mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-12 11:39:57 +01:00
tunnels: fix forwarding attempts wrong path to tunnel binary on linux (#191657)
Fixes #191621
This commit is contained in:
@@ -25,7 +25,7 @@ const cliPath = process.env.VSCODE_FORWARDING_IS_DEV
|
||||
? path.join(__dirname, '../../../cli/target/debug/code')
|
||||
: path.join(
|
||||
vscode.env.appRoot,
|
||||
process.platform === 'win32' ? '../../bin' : 'bin',
|
||||
process.platform === 'darwin' ? 'bin' : '../../bin',
|
||||
vscode.env.appQuality === 'stable' ? 'code-tunnel' : 'code-tunnel-insiders',
|
||||
) + (process.platform === 'win32' ? '.exe' : '');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user