fix: clippy lint

This commit is contained in:
Marli Frost 2023-02-01 17:39:10 +00:00
parent e322842bfd
commit 1eb491e96e

View file

@ -71,7 +71,7 @@ impl<R: Read> ZipStreamReader<R> {
fs::create_dir_all(&outpath)?;
} else {
if let Some(p) = outpath.parent() {
fs::create_dir_all(&p)?;
fs::create_dir_all(p)?;
}
let mut outfile = fs::File::create(&outpath)?;
io::copy(file, &mut outfile)?;