We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e0f7cd + 3020709 commit c894ad6Copy full SHA for c894ad6
core/devmode/src/main/java/io/quarkus/dev/RuntimeUpdatesProcessor.java
@@ -298,6 +298,9 @@ private Set<String> checkForFileChange() {
298
continue;
299
}
300
Path root = Paths.get(rootPath);
301
+ if (!Files.exists(root) || !Files.isReadable(root)) {
302
+ continue;
303
+ }
304
Path classesDir = Paths.get(module.getClassesPath());
305
//copy all modified non hot deployment files over
306
if (doCopy) {
0 commit comments