diff options
Diffstat (limited to 'tvix/eval/src/compiler/mod.rs')
-rw-r--r-- | tvix/eval/src/compiler/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs index 0a9ee2320b1d..d64202c2ad74 100644 --- a/tvix/eval/src/compiler/mod.rs +++ b/tvix/eval/src/compiler/mod.rs @@ -399,9 +399,9 @@ impl Compiler<'_> { // TODO: decide what to do with findFile if raw_path.len() == 2 { return self.emit_constant( - Value::Catchable(CatchableErrorKind::NixPathResolution( + Value::Catchable(Box::new(CatchableErrorKind::NixPathResolution( "Empty <> path not allowed".into(), - )), + ))), node, ); } |