Skip to content

Commit 1cc5841

Browse files
committed
fix(pathmatching): normalize paths to '/' for predictable matching
1 parent e8f933a commit 1cc5841

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/filetree/filetree.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ func GatherFiles(opts *FileGatherOptions) ([]File, *FileNode, error) { //nolint:
5252
return nil
5353
}
5454

55-
if !includeMatcher.Match(path) || info.IsDir() || excludeMatcher.Match(path) {
55+
normalizedPath := filepath.ToSlash(path)
56+
if !includeMatcher.Match(normalizedPath) || info.IsDir() || excludeMatcher.Match(normalizedPath) {
5657
return nil
5758
}
5859

0 commit comments

Comments
 (0)