mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 03:47:56 +00:00
update hockeyapp for win64
This commit is contained in:
parent
7b6b4d0886
commit
f15ff4e6ee
3 changed files with 4 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
"name": "code-oss-dev",
|
||||
"version": "1.13.0",
|
||||
"electronVersion": "1.6.6",
|
||||
"distro": "1dc6b8ea29727a80a9cf0a8832e6d1c16623fe40",
|
||||
"distro": "a1870d5e65d959a5ee8a4c7fce08b136ca47dd79",
|
||||
"author": {
|
||||
"name": "Microsoft Corporation"
|
||||
},
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue