diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index 50aebf012aa..f1aad0fb9dc 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -108,7 +108,6 @@ var config = { darwinBundleDocumentTypes: product.darwinBundleDocumentTypes, darwinCredits: darwinCreditsTemplate ? new Buffer(darwinCreditsTemplate({ commit: commit, date: new Date().toISOString() })) : void 0, winIcon: product.icons.application.ico, - win32ExeBasename: product.win32ExeBasename, token: process.env['GITHUB_TOKEN'] || void 0 }; diff --git a/product.json b/product.json index aafbf1db2da..a5df0a91801 100644 --- a/product.json +++ b/product.json @@ -1,7 +1,6 @@ { "nameShort": "Code [OSS Build]", "nameLong": "Code [OSS Build]", - "win32ExeBasename": "CodeOSS", "win32MutexName": "vscodeoss", "companyName": "Microsoft Corporation", "copyright": "Copyright (C) 2015 Microsoft. All rights reserved", diff --git a/scripts/code.bat b/scripts/code.bat index c58fbf8f4a4..d54066040c7 100644 --- a/scripts/code.bat +++ b/scripts/code.bat @@ -20,7 +20,7 @@ set ELECTRON_ENABLE_LOGGING=1 set ELECTRON_ENABLE_STACK_DUMPING=1 :: Launch Code -.\.build\electron\CodeOSS.exe . %* +.\.build\electron\electron.exe . %* popd :: Unset environment variables after we are done diff --git a/scripts/test.bat b/scripts/test.bat index 21de7af426e..25318c2248e 100644 --- a/scripts/test.bat +++ b/scripts/test.bat @@ -3,5 +3,5 @@ set ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 pushd %~dp0\.. -.\.build\electron\CodeOSS.exe .\node_modules\mocha\bin\_mocha %* +.\.build\electron\electron.exe .\node_modules\mocha\bin\_mocha %* popd