We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57fd9b5 commit 7ae6bd7Copy full SHA for 7ae6bd7
1 file changed
build.gradle.kts
@@ -126,6 +126,13 @@ val pack by tasks.registering(Zip::class) {
126
from(copyArtifacts)
127
archiveFileName.set("jadx-$jadxVersion.zip")
128
destinationDirectory.set(layout.buildDirectory)
129
+ eachFile {
130
+ if (path == "bin/jadx" || path == "bin/jadx-gui") {
131
+ permissions {
132
+ unix("rwxr-xr-x")
133
+ }
134
135
136
}
137
138
val distWin by tasks.registering(Zip::class) {
0 commit comments