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 0547fda commit ae8223dCopy full SHA for ae8223d
src/api.ts
@@ -195,7 +195,7 @@ export async function startWorkspaceIfStoppedOrFailed(
195
startArgs.push(...["--reason", "vscode_connection"]);
196
}
197
198
- const startProcess = spawn(binPath, startArgs);
+ const startProcess = spawn(binPath, startArgs, { shell: true });
199
200
startProcess.stdout.on("data", (data: Buffer) => {
201
data
0 commit comments