fix(cli): hide Codex app-server console window on Windows (#574)

Spawn codex with windowsHide on win32 to avoid extra cmd windows
and stray exit code 128 shells when using shell: true.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
junes
2026-05-06 10:30:56 +08:00
committed by GitHub
co-authored by Cursor
parent 0db303d9f8
commit 3ef4c27ee5
+2 -1
View File
@@ -84,7 +84,8 @@ export class CodexAppServerClient {
return acc;
}, {} as Record<string, string>),
stdio: ['pipe', 'pipe', 'pipe'],
shell: process.platform === 'win32'
shell: process.platform === 'win32',
windowsHide: process.platform === 'win32'
});
this.process.stdout.setEncoding('utf8');