Skip to content

Commit a860bd9

Browse files
Merge pull request #9562 from stuartwdouglas/9515
Make sure to use normalised paths
2 parents 69b525a + 054f4f6 commit a860bd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

independent-projects/bootstrap/core/src/main/java/io/quarkus/bootstrap/classloading/DirectoryClassPathElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class DirectoryClassPathElement extends AbstractClassPathElement {
2626

2727
public DirectoryClassPathElement(Path root) {
2828
assert root != null : "root is null";
29-
this.root = root;
29+
this.root = root.normalize();
3030
}
3131

3232
@Override

0 commit comments

Comments
 (0)