Skip to content

Commit ae8223d

Browse files
committed
Fix cold start of workspace from VS Code
1 parent 0547fda commit ae8223d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export async function startWorkspaceIfStoppedOrFailed(
195195
startArgs.push(...["--reason", "vscode_connection"]);
196196
}
197197

198-
const startProcess = spawn(binPath, startArgs);
198+
const startProcess = spawn(binPath, startArgs, { shell: true });
199199

200200
startProcess.stdout.on("data", (data: Buffer) => {
201201
data

0 commit comments

Comments
 (0)