summaryrefslogtreecommitdiffstats
path: root/src/runner/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runner/mod.rs')
-rw-r--r--src/runner/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runner/mod.rs b/src/runner/mod.rs
index 956afde..22121c2 100644
--- a/src/runner/mod.rs
+++ b/src/runner/mod.rs
@@ -243,7 +243,7 @@ fn spawn_children<'a>(
let pipeline = pipeline.eval(env);
let mut cmds: Vec<_> = pipeline
.into_exes()
- .map(|exe| Command::new_with_io(exe, io.clone()))
+ .map(|exe| Command::new(exe, io.clone()))
.collect();
for i in 0..(cmds.len() - 1) {
let (r, w) = pipe()?;