Fix cargo execution

This commit is contained in:
Shuhei Takahashi 2025-12-22 10:08:24 +09:00
parent f6664b55ed
commit c31e7f7200

View file

@ -63,7 +63,7 @@ tasks {
}
val buildLanguageServer = register<Exec>("buildLanguageServer") {
commandLine("cargo", "build", "--release")
commandLine("sh", "-c", "cargo build --release")
workingDir = file("..")
}