chore: Fix another Windows-specific error

This commit is contained in:
Chris Hennick 2024-05-15 16:14:57 -07:00
parent 91dcf305d7
commit 1e574a961a
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -701,21 +701,17 @@ impl<R: Read + Seek> ZipArchive<R> {
{ {
let target_internal_path: PathBuf = target.into(); let target_internal_path: PathBuf = target.into();
let target_path = directory.as_ref().join(target_internal_path.clone()); let target_path = directory.as_ref().join(target_internal_path.clone());
let target_is_dir = let target_is_dir = if let Ok(meta) = std::fs::metadata(&target_path) {
if let Ok(meta) = std::fs::metadata(&target_path) { meta.is_dir()
meta.is_dir() } else if let Some(target_in_archive) =
} else if let Some(target_in_archive) = self.index_for_path(&target_internal_path)
self.index_for_path(&target_internal_path) {
{ let (_, target_in_archive) =
self self.shared.files.get_index(target_in_archive).unwrap();
.shared target_in_archive.is_dir()
.files } else {
.get_index(target_in_archive) false
.unwrap() };
.is_dir()
} else {
false
};
if target_is_dir { if target_is_dir {
std::os::windows::fs::symlink_dir(target_path, outpath.as_path())?; std::os::windows::fs::symlink_dir(target_path, outpath.as_path())?;
} else { } else {