mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-23 11:16:01 +00:00
* fix: correct tunnel command path for Windows Insiders On Windows Insiders, the bin folder is at root level while appRoot points to resources/app inside the versioned folder. Changed path resolution to use '../../../bin' (3 levels up) for Windows Insiders specifically, while keeping '../../bin' for other platforms. - macOS: 'bin' (directly under appRoot) - Windows Insiders: '../../../bin' (resources/app -> root/bin) - Other platforms: '../../bin' Fixes #282425 * chore: apply feedback --------- Co-authored-by: ThanhNguyxn <thanhnguyxn@users.noreply.github.com> Co-authored-by: Robo <hop2deep@gmail.com>