Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Dec 6, 2024
1 parent 2683b1c commit 5b6710f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions compiler/core/src/zserio/tools/ExtensionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ private File getWorkingDirectory()
{
decodedExecFile = new File(decodedExecUrlPath);
}
if (decodedExecFile.getPath().startsWith("file:"))
{
decodedExecFile = new File(decodedExecFile.getPath().replaceFirst("^file:", ""));
}

System.out.println("decodedExecFile = " + decodedExecFile);
System.out.println("decodedExecFile.getParentFile() = " + decodedExecFile.getParentFile());
System.out.println(
Expand Down

0 comments on commit 5b6710f

Please sign in to comment.