diff --git a/package.json b/package.json index f94b92357aecd0934b6273a66789db52c716c2e3..fa2e5bddfa5b273da7a2b4d9a270b984b9df697b 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "code-oss-dev", "version": "1.13.0", "electronVersion": "1.6.6", - "distro": "1dc6b8ea29727a80a9cf0a8832e6d1c16623fe40", + "distro": "a1870d5e65d959a5ee8a4c7fce08b136ca47dd79", "author": { "name": "Microsoft Corporation" }, diff --git a/src/vs/platform/node/product.ts b/src/vs/platform/node/product.ts index f92b896b62d6ce30d6668b9f91d4e72d2765018e..ece6de31f9b64e859a3cb289837b5cdf0069be7f 100644 --- a/src/vs/platform/node/product.ts +++ b/src/vs/platform/node/product.ts @@ -56,7 +56,8 @@ export interface IProductConfiguration { checksums: { [path: string]: string; }; checksumFailMoreInfoUrl: string; hockeyApp: { - 'win32': string; + 'win32-ia32': string; + 'win32-x64': string; 'linux-ia32': string; 'linux-x64': string; 'darwin': string; diff --git a/src/vs/workbench/electron-browser/shell.ts b/src/vs/workbench/electron-browser/shell.ts index 1f25faacf43035c3ca62b9ad3ed981c3f15fa844..bec5d37606b9e6312e8552a576652d3644ee25a5 100644 --- a/src/vs/workbench/electron-browser/shell.ts +++ b/src/vs/workbench/electron-browser/shell.ts @@ -174,7 +174,7 @@ export class WorkbenchShell { let submitURL: string; if (platform.isWindows) { - submitURL = product.hockeyApp.win32; + submitURL = product.hockeyApp[`win32-${process.arch}`]; } else if (platform.isMacintosh) { submitURL = product.hockeyApp.darwin; } else if (platform.isLinux) {