Skip to content

Commit f532bcc

Browse files
committed
Migrate deprecated fileMode to new filePermissions API
1 parent bcdf3ac commit f532bcc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/build.gradle.kts

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ application {
1919
mainClass.set(serverMainClassName)
2020
description = "Code completions, diagnostics and more for Kotlin"
2121
applicationDefaultJvmArgs = listOf("-DkotlinLanguageServer.version=$version")
22-
applicationDistribution.into("bin") { fileMode = 755 }
22+
applicationDistribution.into("bin") {
23+
filePermissions { unix(755) }
24+
}
2325
}
2426

2527
repositories {

0 commit comments

Comments
 (0)