diff options
Diffstat (limited to 'tvix/castore/src/import/archive.rs')
-rw-r--r-- | tvix/castore/src/import/archive.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tvix/castore/src/import/archive.rs b/tvix/castore/src/import/archive.rs index b13716f54f7f..a3f63be49098 100644 --- a/tvix/castore/src/import/archive.rs +++ b/tvix/castore/src/import/archive.rs @@ -150,7 +150,9 @@ where target: entry .link_name()? .ok_or_else(|| Error::MissingSymlinkTarget(path.clone()))? - .into(), + .into_owned() + .into_os_string() + .into_encoded_bytes(), path, }, // Push a bogus directory marker so we can make sure this directoy gets |