diff options
Diffstat (limited to 'tvix/eval/src/compiler')
-rw-r--r-- | tvix/eval/src/compiler/import.rs | 2 | ||||
-rw-r--r-- | tvix/eval/src/compiler/mod.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tvix/eval/src/compiler/import.rs b/tvix/eval/src/compiler/import.rs index 4e8ea7195d81..6774c7b8922c 100644 --- a/tvix/eval/src/compiler/import.rs +++ b/tvix/eval/src/compiler/import.rs @@ -27,7 +27,7 @@ async fn import_impl( ) -> Result<Value, ErrorKind> { // TODO(sterni): canon_path()? let mut path = match coerce_value_to_path(&co, args.pop().unwrap()).await? { - Err(cek) => return Ok(Value::Catchable(cek)), + Err(cek) => return Ok(Value::Catchable(Box::new(cek))), Ok(path) => path, }; 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, ); } |