Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
msbarry committed May 19, 2024
1 parent 139d7da commit f91d537
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ public static List<Path> walkPathWithPattern(Path basePath, String pattern,
try (var walk = Files.walk(basePath, FileVisitOption.FOLLOW_LINKS)) {
return walk
.filter(path -> {
System.err.println(" " + basePath + " " + basePath.relativize(path) + " " + matcher.matches(basePath.relativize(path));
System.err.println(
" " + basePath + " " + basePath.relativize(path) + " " + matcher.matches(basePath.relativize(path)));
return matcher.matches(path.getFileName()) || matcher.matches(basePath.relativize(path));
})
.flatMap(path -> {
Expand Down

0 comments on commit f91d537

Please sign in to comment.