Skip to content

Commit 9f8630a

Browse files
committed
Replace deprecated toLowerCase with lowercase
1 parent c875afe commit 9f8630a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ tasks.register<Exec>("fixFilePermissions") {
8080
// When running on macOS or Linux the start script
8181
// needs executable permissions to run.
8282

83-
onlyIf { !System.getProperty("os.name").toLowerCase().contains("windows") }
83+
onlyIf { !System.getProperty("os.name").lowercase().contains("windows") }
8484
commandLine("chmod", "+x", "${tasks.installDist.get().destinationDir}/bin/kotlin-language-server")
8585
}
8686

0 commit comments

Comments
 (0)