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 b022247 commit 93193efCopy full SHA for 93193ef
1 file changed
app/build.gradle.kts
@@ -440,7 +440,6 @@ tasks.register<Copy>("includeJavaMode") {
440
from(java.configurations.runtimeClasspath)
441
into(composeResources("modes/java/mode"))
442
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
443
- dirPermissions { unix("rwx------") }
444
}
445
val enableWebGPU = findProperty("enableWebGPU")?.toString()?.toBoolean() ?: false
446
@@ -453,6 +452,7 @@ tasks.register<Copy>("includeJdk") {
453
452
from(jdkHome)
454
destinationDir = composeResources("jdk").get().asFile
455
+ dirPermissions { unix("rwx------") }
456
fileTree(destinationDir).files.forEach { file ->
457
file.setWritable(true, false)
458
file.setReadable(true, false)
0 commit comments