We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcdf3ac commit f532bccCopy full SHA for f532bcc
server/build.gradle.kts
@@ -19,7 +19,9 @@ application {
19
mainClass.set(serverMainClassName)
20
description = "Code completions, diagnostics and more for Kotlin"
21
applicationDefaultJvmArgs = listOf("-DkotlinLanguageServer.version=$version")
22
- applicationDistribution.into("bin") { fileMode = 755 }
+ applicationDistribution.into("bin") {
23
+ filePermissions { unix(755) }
24
+ }
25
}
26
27
repositories {
0 commit comments