2021-02-26 16:14:40 -05:00
|
|
|
diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js
|
2022-06-09 16:19:30 -04:00
|
|
|
index 2686509..4fedec2 100644
|
2021-02-26 16:14:40 -05:00
|
|
|
--- a/build/gulpfile.vscode.js
|
|
|
|
+++ b/build/gulpfile.vscode.js
|
2022-06-09 16:19:30 -04:00
|
|
|
@@ -289,7 +289,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
|
2021-02-26 16:14:40 -05:00
|
|
|
} else if (platform === 'darwin') {
|
|
|
|
const shortcut = gulp.src('resources/darwin/bin/code.sh')
|
2022-06-09 16:19:30 -04:00
|
|
|
.pipe(replace('@@APPNAME@@', product.applicationName))
|
2021-02-26 16:14:40 -05:00
|
|
|
- .pipe(rename('bin/code'));
|
|
|
|
+ .pipe(rename('bin/' + product.applicationName));
|
|
|
|
|
|
|
|
all = es.merge(all, shortcut);
|
|
|
|
}
|
|
|
|
diff --git a/src/vs/platform/native/electron-main/nativeHostMainService.ts b/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
2022-06-09 16:19:30 -04:00
|
|
|
index f7bd477..a489ae4 100644
|
2021-02-26 16:14:40 -05:00
|
|
|
--- a/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
|
|
|
+++ b/src/vs/platform/native/electron-main/nativeHostMainService.ts
|
2022-06-09 16:19:30 -04:00
|
|
|
@@ -351,7 +351,7 @@ export class NativeHostMainService extends Disposable implements INativeHostMain
|
2021-06-12 17:53:56 -04:00
|
|
|
}
|
|
|
|
|
2022-03-04 03:47:45 -05:00
|
|
|
private async getShellCommandLink(): Promise<{ readonly source: string; readonly target: string }> {
|
2021-06-12 17:53:56 -04:00
|
|
|
- const target = resolve(this.environmentMainService.appRoot, 'bin', 'code');
|
|
|
|
+ const target = resolve(this.environmentMainService.appRoot, 'bin', this.productService.applicationName);
|
|
|
|
const source = `/usr/local/bin/${this.productService.applicationName}`;
|
|
|
|
|
|
|
|
// Ensure source exists
|
2022-06-09 16:19:30 -04:00
|
|
|
@@ -545,7 +545,7 @@ export class NativeHostMainService extends Disposable implements INativeHostMain
|
2021-06-12 17:53:56 -04:00
|
|
|
|
2021-02-26 16:14:40 -05:00
|
|
|
// macOS
|
2021-03-10 20:13:52 -05:00
|
|
|
if (this.environmentMainService.isBuilt) {
|
|
|
|
- return join(this.environmentMainService.appRoot, 'bin', 'code');
|
2021-04-01 10:43:49 -04:00
|
|
|
+ return join(this.environmentMainService.appRoot, 'bin', `${this.productService.applicationName}`);
|
2021-02-26 16:14:40 -05:00
|
|
|
}
|
2021-06-12 17:53:56 -04:00
|
|
|
|
|
|
|
return join(this.environmentMainService.appRoot, 'scripts', 'code-cli.sh');
|