Skip to content

Commit

Permalink
fixed missing relative filename
Browse files Browse the repository at this point in the history
  • Loading branch information
FibreFoX committed Jan 27, 2016
1 parent 51738c6 commit dd88d69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void jfxjar() {
project.getLogger().info("Creating parameter-map for packager...");

CreateJarParams createJarParams = new CreateJarParams();
createJarParams.setOutdir(new File(ext.getJfxAppOutputDir()));
createJarParams.setOutdir(new File(project.getProjectDir(), ext.getJfxAppOutputDir()));

// check if we got some filename ending with ".jar"
if( !ext.getJfxMainAppJarName().toLowerCase().endsWith(".jar") ){
Expand Down

0 comments on commit dd88d69

Please sign in to comment.