Skip to content

Commit

Permalink
Fixed issue with x64 appbundle
Browse files Browse the repository at this point in the history
  • Loading branch information
kaikramer committed Jan 4, 2025
1 parent 3d2a063 commit 745eb9e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,7 @@ tasks.register('appbundler') {
) {
classpath(dir: dependenciesDir)
classpath(file: jar.archiveFile.get().asFile.getAbsolutePath())
arch(name: "arm64")
arch(name: "x86_64")
arch(name: (System.getProperty("os.arch") == "aarch64") ? "arm64" : "x86_64")

jlink(runtime: System.properties.'java.home') {
jmod(name: "java.base")
Expand Down

0 comments on commit 745eb9e

Please sign in to comment.