mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
Fix for windows
This commit is contained in:
+2
-1
@@ -37,7 +37,8 @@ export function spawnTsgo(projectPath: string): Promise<void> {
|
||||
|
||||
const child = cp.spawn(npx, args, {
|
||||
cwd: root,
|
||||
stdio: ['ignore', 'pipe', 'pipe']
|
||||
stdio: ['ignore', 'pipe', 'pipe'],
|
||||
shell: true
|
||||
});
|
||||
|
||||
let buffer = '';
|
||||
|
||||
Reference in New Issue
Block a user