aboutsummaryrefslogtreecommitdiffstats
path: root/src/run/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/run/mod.rs')
-rw-r--r--src/run/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run/mod.rs b/src/run/mod.rs
index 52d3925..f34b678 100644
--- a/src/run/mod.rs
+++ b/src/run/mod.rs
@@ -451,7 +451,7 @@ impl Executor {
stdin: InputReader,
stdout: OutputWriter,
) -> SpawnedCmd {
- self.execute_block(parse::Block { commands: s.stmts }, stdin, stdout)
+ self.execute_block(parse::Block { commands: s.stmts, finished_parsing: true }, stdin, stdout)
}
}