Skip to content

Commit

Permalink
Use loose_check_path where it should
Browse files Browse the repository at this point in the history
  • Loading branch information
breard-r committed Sep 6, 2024
1 parent 7387828 commit 4594a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/checker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ fn load_errors(
Some(receipt_set) => receipt_set
.iter()
.filter_map(|f| {
if !calculated_set.iter().any(|e| e.path == f.path) {
if !calculated_set.iter().any(|e| loose_check_path(e, f)) {
Some(f.clone())
} else {
None
Expand Down

0 comments on commit 4594a46

Please sign in to comment.