This commit is contained in:
Sandeep Somavarapu
2018-09-27 00:13:53 +02:00
parent 3d3cbdae58
commit 9a6d9a0658
+1 -1
View File
@@ -142,7 +142,7 @@ class Main {
const outdated = semver.gt(extension.version, installedExtension.manifest.version);
if (outdated) {
if (force) {
console.log(localize('updateMessage', "Updating the Extension '{0}' to a newer version {2}", id, extension.version));
console.log(localize('updateMessage', "Updating the Extension '{0}' to a newer version {1}", id, extension.version));
return this.installFromGallery(id, extension);
} else {
const updateMessage = localize('updateConfirmationMessage', "Extension '{0}' v{1} is already installed, but a newer version {2} is available in the marketplace. Would you like to update?", id, installedExtension.manifest.version, extension.version);