diff --git a/corp/tvixbolt/src/main.rs b/corp/tvixbolt/src/main.rs index 6cd2bebbc..912741847 100644 --- a/corp/tvixbolt/src/main.rs +++ b/corp/tvixbolt/src/main.rs @@ -296,6 +296,11 @@ fn eval(model: &Model) -> Output { } } + out.output = match result.value { + Some(val) => val.to_string(), + None => "".to_string(), + }; + for warning in result.warnings { writeln!( &mut out.warnings,