vscodium/patches/binary-name.patch

36 lines
1.7 KiB
Diff
Raw Normal View History

2021-02-26 21:14:40 +00:00
diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js
2022-03-04 08:47:45 +00:00
index 2f5a931..ac3d7e6 100644
2021-02-26 21:14:40 +00:00
--- a/build/gulpfile.vscode.js
+++ b/build/gulpfile.vscode.js
2022-03-04 08:47:45 +00:00
@@ -290,7 +290,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
2021-02-26 21:14:40 +00:00
all = es.merge(all, gulp.src('resources/linux/code.png', { base: '.' }));
} else if (platform === 'darwin') {
const shortcut = gulp.src('resources/darwin/bin/code.sh')
- .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-03-04 08:47:45 +00:00
index 3bd0c57..d921c60 100644
2021-02-26 21:14:40 +00:00
--- a/src/vs/platform/native/electron-main/nativeHostMainService.ts
+++ b/src/vs/platform/native/electron-main/nativeHostMainService.ts
2022-03-04 08:47:45 +00:00
@@ -353,7 +353,7 @@ export class NativeHostMainService extends Disposable implements INativeHostMain
2021-06-12 21:53:56 +00:00
}
2022-03-04 08:47:45 +00:00
private async getShellCommandLink(): Promise<{ readonly source: string; readonly target: string }> {
2021-06-12 21:53:56 +00: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-03-04 08:47:45 +00:00
@@ -563,7 +563,7 @@ export class NativeHostMainService extends Disposable implements INativeHostMain
2021-06-12 21:53:56 +00:00
2021-02-26 21:14:40 +00:00
// macOS
2021-03-11 01:13:52 +00:00
if (this.environmentMainService.isBuilt) {
- return join(this.environmentMainService.appRoot, 'bin', 'code');
+ return join(this.environmentMainService.appRoot, 'bin', `${this.productService.applicationName}`);
2021-02-26 21:14:40 +00:00
}
2021-06-12 21:53:56 +00:00
return join(this.environmentMainService.appRoot, 'scripts', 'code-cli.sh');