Skip to content
Snippets Groups Projects
Commit cc499bf5 authored by René Schöne's avatar René Schöne
Browse files

0.2.13

- do not evaluate getPackageOutputDir if isSkipRun equals true in JastAddConfiguration
parent e13d0eb6
No related branches found
No related tags found
No related merge requests found
Pipeline #12916 passed
......@@ -63,7 +63,7 @@ public interface JastAddConfiguration {
@OutputDirectory
default File getPackageOutputDir() {
if (isSkipRun() != null && isSkipRun()) {
return null;
return new File(".");
}
return getOutputDirOrDefault().toPath().resolve(getPackageName().replace('.', File.separatorChar)).toFile();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment