From 2e44e4d33cc9f26a7063fef7b92fdb6f82c8a478 Mon Sep 17 00:00:00 2001 From: Reilly Wood <26268125+rgwood@users.noreply.github.com> Date: Tue, 24 Jan 2023 22:12:15 -0800 Subject: [PATCH] Fix the build after #7204 (#7857) Fix the build after merging https://github.com/nushell/nushell/pull/7204. It sat for a bit too long and I should have rerun CI before merging it, my bad. --- crates/nu-command/src/core_commands/do_.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/nu-command/src/core_commands/do_.rs b/crates/nu-command/src/core_commands/do_.rs index 6958ea09d6..85d8c2a324 100644 --- a/crates/nu-command/src/core_commands/do_.rs +++ b/crates/nu-command/src/core_commands/do_.rs @@ -137,6 +137,7 @@ impl Command for Do { Box::new(vec![stdout_stream.into_bytes().map(|s| s.item)].into_iter()), ctrlc, span, + None, ) }) }); @@ -191,6 +192,7 @@ impl Command for Do { Box::new(vec![Ok(stderr_msg.into_bytes())].into_iter()), stderr_ctrlc, span, + None, )), exit_code: Some(ListStream::from_stream( exit_code.into_iter(),