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.
1 parent 32fb569 commit d50d509Copy full SHA for d50d509
core/devmode/src/main/java/io/quarkus/dev/RuntimeUpdatesProcessor.java
@@ -295,6 +295,8 @@ private Set<String> checkForFileChange() {
295
continue;
296
}
297
Path root = Paths.get(rootPath);
298
+ if (!Files.exists(root) || !Files.isReadable(root))
299
+ continue;
300
Path classesDir = Paths.get(module.getClassesPath());
301
//copy all modified non hot deployment files over
302
if (doCopy) {
0 commit comments