Skip to content

Commit 3178113

Browse files
authored
Ignore input to the execa terminal process (#9827)
1 parent 0ed5f3c commit 3178113

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/integrations/terminal/ExecaTerminalProcess.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ export class ExecaTerminalProcess extends BaseTerminalProcess {
4242
shell: true,
4343
cwd: this.terminal.getCurrentWorkingDirectory(),
4444
all: true,
45+
// Ignore stdin to ensure non-interactive mode and prevent hanging
46+
stdin: "ignore",
4547
env: {
4648
...process.env,
4749
// Ensure UTF-8 encoding for Ruby, CocoaPods, etc.

0 commit comments

Comments
 (0)