Skip to content

Commit

Permalink
- fix compilation issue on package.gradle to be able to generate
Browse files Browse the repository at this point in the history
   binaries (packageInstallers task)
  • Loading branch information
rodvar committed Sep 16, 2024
1 parent 2bad8ea commit f097640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/package/package.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ task packageInstallers {
from "${fatJarFolderPath}/${mainJarName}"
into binariesFolderPath
// desktop-1.6.4-SNAPSHOT-all.jar => desktop-1.6.4-SNAPSHOT-all-mac.jar (or -win.jar, or -linux.jar)
rename { String fileName -> fileName.replace('-all.jar', "-all-" + os + ".jar") }
rename { String fileName -> fileName.replace('-all.jar', "-all-" + Os + ".jar") }
}

// Checksum each file present in the binaries folder
Expand Down

0 comments on commit f097640

Please sign in to comment.