From 6684e227d6e98375d6a378916ece6d9329110a34 Mon Sep 17 00:00:00 2001 From: Alan Ren Date: Wed, 1 Mar 2023 08:49:29 -0800 Subject: [PATCH] Fix default install location for system installer of Windows on ARM build (#22073) * fix default path for win arm system installer * update * remove commented out code --- build/gulpfile.vscode.win32.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/gulpfile.vscode.win32.js b/build/gulpfile.vscode.win32.js index 70ddbe3880..bdaecb5689 100644 --- a/build/gulpfile.vscode.win32.js +++ b/build/gulpfile.vscode.win32.js @@ -105,7 +105,7 @@ function buildWin32Setup(arch, target) { IncompatibleArchAppId: { 'ia32': x64AppId, 'x64': ia32AppId, 'arm64': ia32AppId }[arch], AppUserId: product.win32AppUserModelId, ArchitecturesAllowed: { 'ia32': '', 'x64': 'x64', 'arm64': 'arm64 x64' }[arch], //{{SQL CARBON EDIT}} - we still have x64 binaries in SqlToolsService, need to allow x64 binaries for arm64 arch. - ArchitecturesInstallIn64BitMode: { 'ia32': '', 'x64': 'x64', 'arm64': 'arm64' }[arch], + ArchitecturesInstallIn64BitMode: { 'ia32': '', 'x64': 'x64', 'arm64': 'arm64 x64' }[arch], //{{SQL CARBON EDIT}} - same as line above. SourceDir: sourcePath, RepoDir: repoPath, OutputDir: outputPath,