Fix for windows

This commit is contained in:
Matt Bierner
2026-02-02 22:42:48 -08:00
parent 1b46833855
commit 9e3e805950
+2 -1
View File
@@ -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 = '';