Skip to content

Commit

Permalink
fix: attach stderr in exec_internal
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Oct 21, 2024
1 parent a984443 commit 289ede3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ impl ExecMode {
id.get(),
CreateExecOptions {
attach_stdout: Some(true),
attach_stderr: Some(false),
attach_stderr: Some(true),
attach_stdin: Some(true),
tty: Some(true),
cmd: Some(vec![command::SH]),
Expand Down

0 comments on commit 289ede3

Please # to comment.