From 430b957541b3b2609830a37cf1ddf37abdfcce03 Mon Sep 17 00:00:00 2001 From: iff Date: Fri, 13 Dec 2024 12:22:24 +0100 Subject: [PATCH] fix: not getting stderr output --- core/src/shell.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/shell.rs b/core/src/shell.rs index 0f2d7b8..767c2af 100644 --- a/core/src/shell.rs +++ b/core/src/shell.rs @@ -289,7 +289,6 @@ pub fn command_output(shell: &str, command: &str) -> String { .arg("-c") .arg(command) .env("LC_ALL", "C") - .stderr(Stdio::inherit()) .output() .expect("failed to execute process");