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 12ad815 commit 038d94fCopy full SHA for 038d94f
app/build.gradle.kts
@@ -342,6 +342,7 @@ tasks.register<Copy>("includeJavaMode") {
342
from(java.configurations.runtimeClasspath)
343
into(composeResources("modes/java/mode"))
344
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
345
+ dirPermissions { unix("rwx------") }
346
}
347
tasks.register<Copy>("includeJdk") {
348
from(Jvm.current().javaHome.absolutePath)
java/build.gradle.kts
@@ -81,6 +81,7 @@ legacyLibraries.forEach { library ->
81
include("library/**/*")
82
include("examples/**/*")
83
into( javaMode("/libraries/$library"))
84
+ dirPermissions { unix("rwx------") };
85
86
bundle.configure {
87
dependsOn("library-$library-extraResources")
0 commit comments