fix: miscellaneous small fixes (#18328)

This commit is contained in:
Dax
2026-03-19 22:20:29 -04:00
committed by GitHub
parent b3d0446d13
commit 1071aca91f
4 changed files with 4 additions and 4 deletions

View File

@@ -61,9 +61,9 @@ export namespace Process {
const proc = launch(cmd[0], cmd.slice(1), {
cwd: opts.cwd,
shell: opts.shell,
env: opts.env === null ? {} : opts.env ? { ...process.env, ...opts.env } : undefined,
stdio: [opts.stdin ?? "ignore", opts.stdout ?? "ignore", opts.stderr ?? "ignore"],
shell: opts.shell,
windowsHide: process.platform === "win32",
})