Compare commits

...

1 Commits

Author SHA1 Message Date
Dominik Kundel d0423ccd3f fix: respect SHELL on Windows for Git Bash 2026-04-07 19:53:21 -07:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ class SpawnedCodexAppServerClient extends AppServerClientBase {
cwd: this.cwd,
env: this.options.env,
stdio: ["pipe", "pipe", "pipe"],
shell: process.platform === "win32",
shell: process.platform === "win32" ? (process.env.SHELL || true) : false,
windowsHide: true
});
+1 -1
View File
@@ -8,7 +8,7 @@ export function runCommand(command, args = [], options = {}) {
encoding: "utf8",
input: options.input,
stdio: options.stdio ?? "pipe",
shell: process.platform === "win32",
shell: process.platform === "win32" ? (process.env.SHELL || true) : false,
windowsHide: true
});