Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
melaasar committed Jul 16, 2024
1 parent 9bca65b commit c2fe894
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public List<URI> getResolvedUris() throws IOException {
for (var file : getFiles(dirPath, extensions)) {
if (file.getAbsolutePath().startsWith(path.getAbsolutePath())) {
String relative = path.toURI().relativize(file.toURI()).getPath();
uris.add(URI.createURI(rewriteUri+relative));
uris.add(URI.createURI(rewriteUri+"/"+relative));
}
}
}
Expand Down

0 comments on commit c2fe894

Please sign in to comment.