status bar
git clone https://git.lucas.co/cce-status-interface.git
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();