Merge pull request #1437 from matthiasbeyer/imag/fix-doubled-output
Fix: Do not inherit stdout here
This commit is contained in:
commit
7d3224a258
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ fn main() {
|
|||
.map(|command| {
|
||||
match Command::new(format!("imag-{}", command))
|
||||
.stdin(::std::process::Stdio::inherit())
|
||||
.stdout(::std::process::Stdio::inherit())
|
||||
.stdout(::std::process::Stdio::piped())
|
||||
.stderr(::std::process::Stdio::inherit())
|
||||
.arg("--version")
|
||||
.output()
|
||||
|
|
Loading…
Reference in a new issue