Closed ho-wan closed 6 years ago
Hey there.
This is a bug with the new VSCode Live Share plugin I believe. The path is correct for Windows, but the problem is that your VSCode is running both the Mac/Linux args AND the Windows ones.
The problem is not caused by this extension, but rather your copy of VSCode plus another extension you have installed.
See these issues: https://github.com/Microsoft/vscode/issues/50006 https://github.com/Microsoft/vscode/issues/50299
I found out that it was changing the default terminal to bash in my settings.json that's causing the bug.
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
The filepath generated in tasks.json is not correct for windows, the backslash needs to be escaped. Also, both set of args are being executed instead of just the windows args.