From d67d7cda39f5c3a84ee030778d69cdf08634a33c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 9 Jan 2022 23:26:02 -0500 Subject: fix builtins wrapping builtins --- src/runner/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/runner/mod.rs') 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()?; -- cgit v1.2.3-54-g00ecf