Skip to content

Commit 5fc7cc2

Browse files
committed
1 parent f1b948d commit 5fc7cc2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

gulpfile.vscode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ var config = {
100100
darwinBundleDocumentTypes: product.darwinBundleDocumentTypes,
101101
darwinCredits: darwinCreditsTemplate ? new Buffer(darwinCreditsTemplate({ commit: commit, date: new Date().toISOString() })) : void 0,
102102
winIcon: product.icons.application.ico,
103-
win32ExeBasename: product.nameShort
103+
win32ExeBasename: product.win32ExeBasename
104104
};
105105

106106
gulp.task('electron', function () {

product.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"nameShort": "Code [OSS Build]",
33
"nameLong": "Code [OSS Build]",
4+
"win32ExeBasename": "CodeOSS",
45
"companyName": "Microsoft Corporation",
56
"copyright": "Copyright (C) 2015 Microsoft. All rights reserved",
67
"darwinBundleIdentifier": "code.visualstudio.com.Code",

scripts/code.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ set ELECTRON_ENABLE_STACK_DUMPING=1
88

99
pushd %~dp0\..
1010
node .\node_modules\gulp\bin\gulp.js electron
11-
..\Electron-Build\Code.exe . %*
11+
..\Electron-Build\CodeOSS.exe . %*
1212
popd

0 commit comments

Comments
 (0)