json: Fix package-version-server referencing the wrong path to the binary (#13555)
We were trying to access the binary at package-version-server-{VERSION}/package-version-server, whereas the binary itself is placed at package-version-server-{VERSION} Release Notes: - Fixed package.json language server failing to start. Co-authored-by: Peter Tripp <peter@zed.dev>
This commit is contained in:
parent
49dc63812a
commit
3a08d7ab43
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ impl LspAdapter for NodeVersionAdapter {
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(LanguageServerBinary {
|
Ok(LanguageServerBinary {
|
||||||
path: destination_path.join("package-version-server"),
|
path: destination_path,
|
||||||
env: None,
|
env: None,
|
||||||
arguments: Default::default(),
|
arguments: Default::default(),
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue