fix(windows): hide bash helper consoles

closes #4699
This commit is contained in:
Armin Ronacher
2026-05-18 23:20:22 +02:00
parent b1893b3d77
commit 29b3417a7a
5 changed files with 15 additions and 2 deletions

View File

@@ -76,6 +76,7 @@ export function createLocalBashOperations(options?: { shellPath?: string }): Bas
detached: process.platform !== "win32",
env: env ?? getShellEnv(),
stdio: ["ignore", "pipe", "pipe"],
windowsHide: true,
});
if (child.pid) trackDetachedChildPid(child.pid);
let timedOut = false;