We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e69ef14 commit 49c6bf6Copy full SHA for 49c6bf6
compiler/core/src/zserio/tools/ExtensionManager.java
@@ -153,7 +153,7 @@ private File getWorkingDirectory()
153
final Path execParentPath = execPath.getParent();
154
System.out.println("execParentPath = " + execParentPath);
155
156
- return execParentPath.toFile();
+ return (execParentPath == null) ? null : execParentPath.toFile();
157
}
158
catch (SecurityException | URISyntaxException excpt)
159
{
0 commit comments