Follow JetBrains' move of the kotlin-lsp download path - #113
Merged
MrSubidubi merged 1 commit intoAug 3, 2026
Conversation
`RELEASES.md` names the newest build, and every build from 262.8190.0 onwards lives under `language-server/kotlin-server/` rather than `kotlin-lsp/`. The old path 404s for all of them, so the server currently cannot be downloaded at all. Checked against the CDN: the old path serves 262.7569.0 and earlier and 404s from 262.8190.0 on; the new one is the mirror image. Since the version always comes from `RELEASES.md`, which has been past the cutover since June, only the new path is reachable in practice. The Windows ARM example in the comment above also had its suffixes the wrong way round. The archive is `kotlin-server-<version>-aarch64.win.zip`, which is what the code builds.
MrSubidubi
approved these changes
Aug 3, 2026
MrSubidubi
left a comment
Contributor
There was a problem hiding this comment.
Thanks and sorry for the delay!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
kotlin-lsp cannot be downloaded at all right now.
get_versiontakes the newest build fromRELEASES.md, and every build from262.8190.0onwards lives underlanguage-server/kotlin-server/on the CDN rather thankotlin-lsp/, which is whatdownload_from_teamcitybuilds.Checked against the CDN:
kotlin-lsp/…language-server/kotlin-server/…RELEASES.md)So the layout changed between
262.7569.0and262.8190.0, in June. Since the version always comes fromRELEASES.md, which has been past the cutover ever since, the old path is unreachable in practice and the new one is enough.All six platform assets verified on the new path for
262.9593.0:.tar.gz,-aarch64.tar.gz,.win.zip,-aarch64.win.zip,.sit,-aarch64.sit.The Windows ARM line in the comment above also had its suffixes reversed. The archive is
kotlin-server-<version>-aarch64.win.zip, which is what the code already builds; only the comment was wrong.