From 289ede3f2531feeec56094a76bf34f4c69431bbe Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Mon, 21 Oct 2024 15:32:34 +0000 Subject: [PATCH] fix: attach stderr in exec_internal --- src/exec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exec.rs b/src/exec.rs index 1c3468e..283a945 100644 --- a/src/exec.rs +++ b/src/exec.rs @@ -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]),