We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce2a0d commit 92834d2Copy full SHA for 92834d2
editors/vscode/client/ConfigService.ts
@@ -73,6 +73,10 @@ export class ConfigService implements IDisposable {
73
return;
74
}
75
bin = path.normalize(path.join(cwd, bin));
76
+ // strip the leading slash on Windows
77
+ if (process.platform === 'win32' && bin.startsWith('\\')) {
78
+ bin = bin.slice(1);
79
+ }
80
81
82
return bin;
0 commit comments