Skip to content

Commit

Permalink
chore(style): rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamLeyshon committed Aug 1, 2024
1 parent a3a561d commit 3232c1a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,11 @@ impl CopyBuilder {
}
}

if !self.include_filters.is_empty() && !self
.include_filters
.iter()
.any(|f| entry.path().to_string_lossy().contains(f))
if !self.include_filters.is_empty()
&& !self
.include_filters
.iter()
.any(|f| entry.path().to_string_lossy().contains(f))
{
continue 'files;
}
Expand Down

0 comments on commit 3232c1a

Please sign in to comment.