Skip to content

Commit

Permalink
Merge pull request #1641 from vmutafov/vmutafov/fix-graal-filesystem
Browse files Browse the repository at this point in the history
fix: handle empty path when graaljs builds stacktraces
  • Loading branch information
ThuF authored Mar 4, 2022
2 parents 97409b8 + b23063d commit 875264a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ public Path parsePath(URI uri) {

@Override
public Path parsePath(String path) {
if ("".equals(path)) {
return Path.of("");
}
return standardHandler.handlePossibleRepositoryPath(path);
}

Expand Down

0 comments on commit 875264a

Please sign in to comment.