Skip to content

Commit

Permalink
#384 try to mark all jre/bin files as executable
Browse files Browse the repository at this point in the history
  • Loading branch information
angryziber committed Feb 10, 2023
1 parent 4a3b401 commit fa912f9
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 @@ -239,7 +239,7 @@ def macLauncher(def platform) {
ant.zipfileset(dir: "${dist}/${name}.app", excludes: "Contents/MacOS/ipscan,Contents/MacOS/jre/bin/java", prefix: "${name}.app")
// this one should be executable
ant.zipfileset(dir: "${dist}/${name}.app", includes: "Contents/MacOS/ipscan", prefix: "${name}.app", filemode: "755")
ant.zipfileset(dir: "${dist}/${name}.app", includes: "Contents/MacOS/jre/bin/java", prefix: "${name}.app", filemode: "755")
ant.zipfileset(dir: "${dist}/${name}.app", includes: "Contents/MacOS/jre/bin/*", prefix: "${name}.app", filemode: "755")
}

if (System.getenv("APPLE_USER")) {
Expand Down

0 comments on commit fa912f9

Please sign in to comment.