elixir: Fix next-ls binary name (#11363)

This is to followup #11318, and the comment from @mhanberg.

Release Notes:

- N/A
This commit is contained in:
Andrei Zvonimir Crnković 2024-05-06 16:41:23 +02:00 committed by GitHub
parent 80733e919d
commit bc5f82d40c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ impl NextLs {
language_server_id: &LanguageServerId,
worktree: &zed::Worktree,
) -> Result<String> {
if let Some(path) = worktree.which("next-ls") {
if let Some(path) = worktree.which("nextls") {
return Ok(path);
}