Skip to content

Commit

Permalink
Merge pull request #22769 from radcortez/fix-22703
Browse files Browse the repository at this point in the history
Fix watched files for `quarkus.config.locations`
  • Loading branch information
gsmet authored Jan 10, 2022
2 parents 7eae75b + c1a065c commit eda9a6a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ public void watchConfigFiles(BuildProducer<HotDeploymentWatchedFileBuildItem> wa
for (URI location : locations) {
Path path = location.getScheme() != null ? Paths.get(location) : Paths.get(location.getPath());
if (!Files.isDirectory(path)) {
configWatchedFiles.add(location.toString());
configWatchedFiles.add(appendProfileToFilename(location.toString(), profile));
configWatchedFiles.add(path.toString());
configWatchedFiles.add(appendProfileToFilename(path.toString(), profile));
}
}
});
Expand Down

0 comments on commit eda9a6a

Please sign in to comment.