Skip to content

Commit 4165066

Browse files
committed
Ignore input to the execa terminal process
1 parent 94c997c commit 4165066

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)