From 61ab30fe87ce2f909b9eb2d397a5e9fa2364ea87 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Thu, 22 Oct 2020 14:56:12 -0700 Subject: [PATCH] Fix insiders bug. (#6373) --- Extension/src/githubAPI.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extension/src/githubAPI.ts b/Extension/src/githubAPI.ts index 33499e419d..a41cbe6b34 100644 --- a/Extension/src/githubAPI.ts +++ b/Extension/src/githubAPI.ts @@ -116,7 +116,7 @@ export function vsixNameForPlatform(info: PlatformInformation): string { switch (platformInfo.platform) { case 'win32': switch (platformInfo.architecture) { - case 'x86_64': return 'cpptool-win32.vsix'; // TODO: Change to cpptools-win64? + case 'x86_64': return 'cpptools-win32.vsix'; // TODO: Change to cpptools-win64? case 'x86': case 'i386': case 'i686': return 'cpptools-win32.vsix';