jpackageZip: Make files under bin executable

This commit is contained in:
Abe Pazos
2026-01-21 13:44:39 +01:00
parent 774ab3d0d6
commit 9f57439f00

View File

@@ -56,6 +56,11 @@ tasks {
from("${layout.buildDirectory.get()}/jpackage") { from("${layout.buildDirectory.get()}/jpackage") {
include("**/*") include("**/*")
} }
filesMatching("**/bin/*") {
permissions {
unix("0755")
}
}
dependsOn("jpackage") dependsOn("jpackage")
} }
} }