Skip to content

Commit

Permalink
Fix complication in distribution/archives/build.gradle
Browse files Browse the repository at this point in the history
This commit fixes a missing brace in distribution/archives/build.gradle.
  • Loading branch information
jasontedor committed Oct 31, 2019
1 parent 90d4437 commit 046f5bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distribution/archives/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ CopySpec archiveFiles(CopySpec modulesFiles, String distributionType, String pla
with binFiles(distributionType, oss, jdk)
}
if (jdk) {
into("darwin".equals(platform) ? 'jdk.app' : 'jdk')
into("darwin".equals(platform) ? 'jdk.app' : 'jdk') {
with jdkFiles(project, platform)
}
}
Expand Down

0 comments on commit 046f5bf

Please sign in to comment.