Skip to content

Commit

Permalink
Correct the targetPlatform in build.gradle from windows-x64 to win-x64.
Browse files Browse the repository at this point in the history
Signed-off-by: Vest <[email protected]>
  • Loading branch information
Vest committed Nov 10, 2024
1 parent 855299d commit 2dd620f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ runtime {
// We support Mac/Win/Linux x86-64, Mac/Linux aarch64
targetPlatform('linux-x64', layout.projectDirectory.dir("jre/linux/jre_x64").asFile.absolutePath)
targetPlatform('linux-aarch64', layout.projectDirectory.dir("jre/linux/jre_aarch64").asFile.absolutePath)
targetPlatform('windows-x64', layout.projectDirectory.dir("jre/windows/jre_x64").asFile.absolutePath)
targetPlatform('win-x64', layout.projectDirectory.dir("jre/windows/jre_x64").asFile.absolutePath)
targetPlatform('mac-x64', layout.projectDirectory.dir("jre/mac/jre_x64/Contents/Home").asFile.absolutePath)
targetPlatform('mac-aarch64', layout.projectDirectory.dir("jre/mac/jre_aarch64/Contents/Home").asFile.absolutePath)

Expand Down

0 comments on commit 2dd620f

Please sign in to comment.