Skip to content

Commit daa36ae

Browse files
authored
can not open vscode in wsl1 (microsoft#192709)
cant opened vscode in wsl1 microsoft#192506
1 parent 9792799 commit daa36ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/server/node/server.cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export async function main(desc: ProductDescription, args: string[]): Promise<vo
271271
if (verbose) {
272272
console.log(`Invoking: cd "${cliCwd}" && ELECTRON_RUN_AS_NODE=1 "${cliCommand}" "${newCommandline.join('" "')}"`);
273273
}
274-
_cp.spawn(cliCommand, newCommandline, { cwd: cliCwd, env, stdio: ['inherit'] });
274+
_cp.spawn(cliCommand, newCommandline, { cwd: cliCwd, env, stdio: 'inherit' });
275275
}
276276
} else {
277277
if (parsedArgs.status) {

0 commit comments

Comments
 (0)