lsp/next-ls: Fix wrong nls binary being fetched. (#3181)

CPU types had to be swapped around.

Fixed zed-industries/community#2185

Release Notes:
- Fixed Elixir next-ls LSP installation failing due to fetching a binary
for the wrong architecture (zed-industries/community#2185).
This commit is contained in:
Piotr Osiewicz 2023-10-30 18:27:05 +01:00 committed by GitHub
parent 4986d4771d
commit dc8a853842
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -321,8 +321,8 @@ impl LspAdapter for NextLspAdapter {
latest_github_release("elixir-tools/next-ls", false, delegate.http_client()).await?;
let version = release.name.clone();
let platform = match consts::ARCH {
"x86_64" => "darwin_arm64",
"aarch64" => "darwin_amd64",
"x86_64" => "darwin_amd64",
"aarch64" => "darwin_arm64",
other => bail!("Running on unsupported platform: {other}"),
};
let asset_name = format!("next_ls_{}", platform);