Skip to content

Commit

Permalink
fix class path directroy analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
n0tl3ss committed Apr 10, 2024
1 parent 08d4a02 commit 8ab5c73
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOEx

@Override
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) {
if (inNativeImageDir && relativePathOf(file).endsWith("resource-config.json")) {
if (!ignoreExistingResourcesConfig && inNativeImageDir && relativePathOf(file).endsWith("resource-config.json")) {
hasNativeImageResourceFile = true;
return FileVisitResult.TERMINATE;
}
Expand Down

0 comments on commit 8ab5c73

Please sign in to comment.