fix: reduce command have not redirected block's evaluation output (#5193)

fixes https://github.com/nushell/nushell/issues/5190
This commit is contained in:
ZetaNumbers 2022-04-15 15:03:16 +03:00 committed by GitHub
parent 581afc9023
commit 583b7b1821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,8 @@ impl Command for Reduce {
let mut acc = start_val;
for (idx, x) in input_iter.enumerate() {
let mut input_iter = input_iter.enumerate().peekable();
while let Some((idx, x)) = input_iter.next() {
stack.with_env(&orig_env_vars, &orig_env_hidden);
// if the acc coming from previous iter is indexed, drop the index
acc = if let Value::Record { cols, vals, .. } = &acc {
@ -178,7 +179,8 @@ impl Command for Reduce {
&mut stack,
block,
PipelineData::new(span),
redirect_stdout,
// redirect stdout until its the last input value
redirect_stdout || input_iter.peek().is_some(),
redirect_stderr,
)?
.into_value(span);