We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 772f941 commit 0fd66d8Copy full SHA for 0fd66d8
tools/cli/build.gradle.kts
@@ -77,7 +77,13 @@ val buildWithR8 by tasks.registering(JavaExec::class) {
77
val buildCLI by tasks.registering(Zip::class) {
78
dependsOn(buildWithR8)
79
80
- from(layout.buildDirectory.file("install/valkyrie-shadow"))
+ from(layout.buildDirectory.file("install/valkyrie-shadow")) {
81
+ filesMatching("bin/valkyrie") {
82
+ permissions {
83
+ unix("rwxr-xr-x") // 755 in octal
84
+ }
85
86
87
88
archiveFileName.set("$baseName-cli-$version.zip")
89
destinationDirectory.set(layout.buildDirectory.dir("distributions/"))
0 commit comments