git.lucas.co / cce-status-interface
status bar
git clone https://git.lucas.co/cce-status-interface.git

commitc4d336b0e0e4cd44d87bd3828c5d7e785af82d47
parent9a00ad62cc
authorLucas Galante <[email protected]>
date2026-06-24 21:21
fix: inherit stderr for spawned clear-cloud processes to capture logs in cce.log

 src/main.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs
index 85f3467..e23e881 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -811,7 +811,7 @@ impl StatusApp {
                 .args(&cmd_args)
                 .stdin(std::process::Stdio::piped())
                 .stdout(std::process::Stdio::piped())
-                .stderr(std::process::Stdio::piped())
+                .stderr(std::process::Stdio::inherit())
                 .spawn()
             {
                 Ok(c) => c,
@@ -1911,7 +1911,7 @@ async fn show_clear_cloud_menu(
                 .args(&cmd_args)
                 .stdin(std::process::Stdio::piped())
                 .stdout(std::process::Stdio::piped())
-                .stderr(std::process::Stdio::piped())
+                .stderr(std::process::Stdio::inherit())
                 .spawn()?;
 
             let pid = child.id();