Upstream has migrated from long obsolete yarn v1 to npm as node package manager. So make necessary changes to Makefile to follow the migration. While here, remove REH (remote extension host) option which is no-op in package building. Users who want to build remote extension host can now use dedicated make target "build-remote-extension-host". Changelog: https://code.visualstudio.com/updates/v1_94 Reported by: GitHub (watch releases)
12 lines
445 B
JavaScript
12 lines
445 B
JavaScript
--- src/bootstrap-node.js.orig 2024-09-27 21:08:28 UTC
|
|
+++ src/bootstrap-node.js
|
|
@@ -169,7 +169,7 @@ module.exports.configurePortable = function (product)
|
|
return process.env['VSCODE_PORTABLE'];
|
|
}
|
|
|
|
- if (process.platform === 'win32' || process.platform === 'linux') {
|
|
+ if (process.platform === 'win32' || process.platform === 'linux' || process.platform === 'freebsd') {
|
|
return path.join(getApplicationPath(path), 'data');
|
|
}
|
|
|