Merge pull request #1345 from matthiasbeyer/imag/inherit-stdio

Inherit stdio to child process
This commit is contained in:
Matthias Beyer 2018-03-12 23:22:17 +01:00 committed by GitHub
commit dc76729bea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

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