Skip to content

Commit 681a257

Browse files
committed
chore: generate
1 parent 586207a commit 681a257

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

packages/opencode/src/lsp/server.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,7 @@ export namespace LSPServer {
12291229
}
12301230

12311231
const release = await releaseResponse.json()
1232-
const version = release.name?.replace(/^v/, '')
1232+
const version = release.name?.replace(/^v/, "")
12331233

12341234
if (!version) {
12351235
log.error("Could not determine Kotlin LSP version from release")
@@ -1248,11 +1248,7 @@ export namespace LSPServer {
12481248
else if (platform === "linux") kotlinPlatform = "linux"
12491249
else if (platform === "win32") kotlinPlatform = "win"
12501250

1251-
const supportedCombos = [
1252-
"mac-x64", "mac-aarch64",
1253-
"linux-x64", "linux-aarch64",
1254-
"win-x64", "win-aarch64"
1255-
]
1251+
const supportedCombos = ["mac-x64", "mac-aarch64", "linux-x64", "linux-aarch64", "win-x64", "win-aarch64"]
12561252

12571253
const combo = `${kotlinPlatform}-${kotlinArch}`
12581254

0 commit comments

Comments
 (0)