Skip to content

Commit

Permalink
Move identifier option to correct task
Browse files Browse the repository at this point in the history
(also set +x unix permission on gradlew)
  • Loading branch information
msgilligan committed Sep 4, 2019
1 parent 1482a36 commit 933f2b6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Empty file modified gradlew
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ class JPackageImageTaskImpl extends BaseTaskImpl<JPackageTaskData> {
'--main-class', jpd.mainClass,
'--output', outputDir,
'--name', jpd.imageName,
'--identifier', jpd.identifier ?: jpd.mainClass,
'--runtime-image', td.runtimeImageDir,
*(jpd.jvmArgs ? jpd.jvmArgs.collect{['--java-options', adjustArg(it)]}.flatten() : []),
*jpd.imageOptions]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class JPackageTaskImpl extends BaseTaskImpl<JPackageTaskData> {
'--package-type', packageType,
'--output', td.jpackageData.getInstallerOutputDir(),
'--name', jpd.installerName,
'--identifier', jpd.identifier ?: jpd.mainClass,
'--app-image', "$appImagePath",
*jpd.installerOptions]
}
Expand Down

0 comments on commit 933f2b6

Please sign in to comment.