diff options
Diffstat (limited to 'corp')
-rw-r--r-- | corp/tvixbolt/src/main.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/corp/tvixbolt/src/main.rs b/corp/tvixbolt/src/main.rs index 6cd2bebbce27..912741847bce 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, |