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| {
|
.map(|command| {
|
||||||
match Command::new(format!("imag-{}", command))
|
match Command::new(format!("imag-{}", command))
|
||||||
.stdin(::std::process::Stdio::inherit())
|
.stdin(::std::process::Stdio::inherit())
|
||||||
.stdout(::std::process::Stdio::inherit())
|
.stdout(::std::process::Stdio::piped())
|
||||||
.stderr(::std::process::Stdio::inherit())
|
.stderr(::std::process::Stdio::inherit())
|
||||||
.arg("--version")
|
.arg("--version")
|
||||||
.output()
|
.output()
|
||||||
|
|
Loading…
Reference in a new issue