Skip to content

Commit

Permalink
Merge pull request quarkusio#37563 from radcortez/fix-37559
Browse files Browse the repository at this point in the history
Consistent file URI for folders and jars
  • Loading branch information
radcortez authored Dec 7, 2023
2 parents a9e5650 + 2c3c3c1 commit abe537f
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.toUri().getPath());
configFiles.add(candidate.toUri().toURL().toString());
}
}
return configFiles;
Expand Down

0 comments on commit abe537f

Please sign in to comment.