Skip to content

Commit a788e5f

Browse files
committed
Fix unix permission literal
1 parent bddd7fb commit a788e5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: server/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ application {
2020
description = "Code completions, diagnostics and more for Kotlin"
2121
applicationDefaultJvmArgs = listOf("-DkotlinLanguageServer.version=$version")
2222
applicationDistribution.into("bin") {
23-
filePermissions { unix(755) }
23+
filePermissions { unix("755".toInt(radix = 8)) }
2424
}
2525
}
2626

0 commit comments

Comments
 (0)