fix(build): set *nix executable permissions on start scripts (PR #2838)

This commit is contained in:
Jan S.
2026-03-30 20:03:04 +02:00
committed by GitHub
parent 57fd9b5bdb
commit 7ae6bd737c
+7
View File
@@ -126,6 +126,13 @@ val pack by tasks.registering(Zip::class) {
from(copyArtifacts)
archiveFileName.set("jadx-$jadxVersion.zip")
destinationDirectory.set(layout.buildDirectory)
eachFile {
if (path == "bin/jadx" || path == "bin/jadx-gui") {
permissions {
unix("rwxr-xr-x")
}
}
}
}
val distWin by tasks.registering(Zip::class) {