Merge pull request #1345 from matthiasbeyer/imag/inherit-stdio
Inherit stdio to child process
This commit is contained in:
commit
dc76729bea
1 changed files with 3 additions and 0 deletions
|
@ -205,6 +205,9 @@ fn main() {
|
|||
.iter()
|
||||
.map(|command| {
|
||||
match Command::new(format!("imag-{}", command))
|
||||
.stdin(::std::process::Stdio::inherit())
|
||||
.stdout(::std::process::Stdio::inherit())
|
||||
.stderr(::std::process::Stdio::inherit())
|
||||
.arg("--version")
|
||||
.output()
|
||||
.map(|v| v.stdout)
|
||||
|
|
Loading…
Reference in a new issue