Browse Source

Fix clippy (#802)

remotes/origin/feat/support-install-latest
Gal Schlezinger 3 years ago committed by GitHub
parent
commit
e75a92d868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/archive/zip.rs

2
src/archive/zip.rs

@ -42,7 +42,7 @@ impl<R: Read> Extract for Zip<R> {
} }
} }
if (&*file.name()).ends_with('/') { if file.name().ends_with('/') {
debug!( debug!(
"File {} extracted to \"{}\"", "File {} extracted to \"{}\"",
i, i,

Loading…
Cancel
Save