Skip to content

Commit

Permalink
Migrate deprecated fileMode to new filePermissions API
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Jan 18, 2025
1 parent bcdf3ac commit f532bcc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ application {
mainClass.set(serverMainClassName)
description = "Code completions, diagnostics and more for Kotlin"
applicationDefaultJvmArgs = listOf("-DkotlinLanguageServer.version=$version")
applicationDistribution.into("bin") { fileMode = 755 }
applicationDistribution.into("bin") {
filePermissions { unix(755) }
}
}

repositories {
Expand Down

0 comments on commit f532bcc

Please sign in to comment.