Properly redirect invocations (#2070)

* Properly redirect invocations

* Don't convert with-env yet, as there's a random test failure
This commit is contained in:
Jonathan Turner
2020-06-28 09:04:57 +12:00
committed by GitHub
parent 8b3964f518
commit dffc9c9b1c
5 changed files with 45 additions and 4 deletions

View File

@ -196,6 +196,9 @@ async fn evaluate_invocation(
let input = InputStream::empty();
let mut block = block.clone();
block.set_is_last(true);
let result = run_block(&block, &mut context, input, it, vars, env).await?;
let output = result.into_vec().await;