apupier commented on code in PR #18254: URL: https://github.com/apache/camel/pull/18254#discussion_r2123703564
########## dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Run.java: ########## @@ -1871,9 +1871,11 @@ private boolean skipFile(String name) { } // skip dirs - Path path = Paths.get(name); - if (Files.exists(path) && Files.isDirectory(path)) { - return true; + if (!name.startsWith("classpath:")) { Review Comment: it remains the case directory specified through classpath but it wasn't handled before -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org