diff options
Diffstat (limited to 'tvix/glue/src/tvix_io.rs')
-rw-r--r-- | tvix/glue/src/tvix_io.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tvix/glue/src/tvix_io.rs b/tvix/glue/src/tvix_io.rs index 19e5dd0b41df..9fb9fbc37590 100644 --- a/tvix/glue/src/tvix_io.rs +++ b/tvix/glue/src/tvix_io.rs @@ -33,8 +33,7 @@ where } fn import_path(&self, path: &Path) -> io::Result<PathBuf> { - let imported_path = self.actual.as_ref().import_path(path)?; - Ok(imported_path) + self.actual.as_ref().import_path(path) } fn path_exists(&self, path: &Path) -> io::Result<bool> { |