mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-20 09:32:19 +00:00
chore: generate
This commit is contained in:
parent
586207adb4
commit
681a257df6
1 changed files with 2 additions and 6 deletions
|
|
@ -1229,7 +1229,7 @@ export namespace LSPServer {
|
|||
}
|
||||
|
||||
const release = await releaseResponse.json()
|
||||
const version = release.name?.replace(/^v/, '')
|
||||
const version = release.name?.replace(/^v/, "")
|
||||
|
||||
if (!version) {
|
||||
log.error("Could not determine Kotlin LSP version from release")
|
||||
|
|
@ -1248,11 +1248,7 @@ export namespace LSPServer {
|
|||
else if (platform === "linux") kotlinPlatform = "linux"
|
||||
else if (platform === "win32") kotlinPlatform = "win"
|
||||
|
||||
const supportedCombos = [
|
||||
"mac-x64", "mac-aarch64",
|
||||
"linux-x64", "linux-aarch64",
|
||||
"win-x64", "win-aarch64"
|
||||
]
|
||||
const supportedCombos = ["mac-x64", "mac-aarch64", "linux-x64", "linux-aarch64", "win-x64", "win-aarch64"]
|
||||
|
||||
const combo = `${kotlinPlatform}-${kotlinArch}`
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue