fix: clippy lint
This commit is contained in:
parent
e322842bfd
commit
1eb491e96e
1 changed files with 1 additions and 1 deletions
|
@ -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)?;
|
||||
|
|
Loading…
Add table
Reference in a new issue