fix: not getting stderr output

This commit is contained in:
iff 2024-12-13 12:22:24 +01:00
parent cc9659e0aa
commit 430b957541

View file

@ -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");