Skip to content

Commit

Permalink
Properly match unknown config files for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez committed Dec 5, 2023
1 parent 6ffa82e commit d0f48bf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public static Set<String> configFiles(Path configFilesLocation) throws IOExcepti
Set<String> configFiles = new HashSet<>();
try (DirectoryStream<Path> candidates = Files.newDirectoryStream(configFilesLocation, CONFIG_FILES_FILTER)) {
for (Path candidate : candidates) {
configFiles.add(candidate.toString());
configFiles.add(candidate.toUri().getPath());
}
}
return configFiles;
Expand Down

0 comments on commit d0f48bf

Please sign in to comment.