From ba73e0eb06b0d2ab9d2e12ce0aaef8eda7d03674 Mon Sep 17 00:00:00 2001 From: JT Date: Tue, 12 Oct 2021 06:37:22 +1300 Subject: [PATCH] Another early emit --- crates/nu-command/src/viewers/table.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/nu-command/src/viewers/table.rs b/crates/nu-command/src/viewers/table.rs index f0527599f6..93338f3589 100644 --- a/crates/nu-command/src/viewers/table.rs +++ b/crates/nu-command/src/viewers/table.rs @@ -91,6 +91,7 @@ impl Command for Table { span: call.head, }) } + Value::Error { error } => Err(error), x => Ok(x), } }