Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d0423ccd3f |
@@ -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
|
||||
});
|
||||
|
||||
|
||||
@@ -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
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user