commit a1fddf250797ecdc4ab78e6c0311190da14fdd77
parent c1b52e436d4256bffd29a1059323c9ac079eede3
Author: Zack Newman <zack@philomathiclife.com>
Date: Mon, 12 Aug 2024 20:13:21 -0600
always inherit stderr
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
@@ -15,7 +15,7 @@ version = "0.1.0"
maintenance = { status = "actively-developed" }
[dependencies]
-serde = { version = "1.0.204", default-features = false }
+serde = { version = "1.0.207", default-features = false }
toml = { version = "0.8.19", default-features = false, features = ["parse"] }
[profile.release]
diff --git a/src/args.rs b/src/args.rs
@@ -81,7 +81,7 @@ impl Opts {
args.push(features);
}
let output = Command::new("cargo")
- .stderr(Stdio::null())
+ .stderr(Stdio::inherit())
.stdin(Stdio::null())
.stdout(Stdio::piped())
.args(args)
@@ -109,7 +109,7 @@ impl Opts {
args.push(features);
}
let output = Command::new("cargo")
- .stderr(Stdio::null())
+ .stderr(Stdio::inherit())
.stdin(Stdio::null())
.stdout(Stdio::piped())
.args(args)