From 9a6d9a06583b89276ac0c13177e7cd7d49304f35 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Thu, 27 Sep 2018 00:13:53 +0200 Subject: [PATCH] Fix args --- src/vs/code/node/cliProcessMain.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/code/node/cliProcessMain.ts b/src/vs/code/node/cliProcessMain.ts index 7f5ae1394e9..084ebab7f97 100644 --- a/src/vs/code/node/cliProcessMain.ts +++ b/src/vs/code/node/cliProcessMain.ts @@ -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);