windows: Fix package-version-server (#13821)

Now, it can run on windows.

![Screenshot 2024-07-04
173832](https://github.com/zed-industries/zed/assets/14981363/d3c17fe3-6e79-46cd-b9a3-f6655109463c)


Release Notes:

- N/A
This commit is contained in:
张小白 2024-07-04 18:49:17 +08:00 committed by GitHub
parent 818e6e53d6
commit d450a1d9e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -317,8 +317,11 @@ impl LspAdapter for NodeVersionAdapter {
delegate: &dyn LspAdapterDelegate,
) -> Result<LanguageServerBinary> {
let version = latest_version.downcast::<GitHubLspBinaryVersion>().unwrap();
let destination_path =
container_dir.join(format!("package-version-server-{}", version.name));
let destination_path = container_dir.join(format!(
"package-version-server-{}{}",
version.name,
std::env::consts::EXE_SUFFIX
));
let destination_container_path =
container_dir.join(format!("package-version-server-{}-tmp", version.name));
if fs::metadata(&destination_path).await.is_err() {
@ -340,7 +343,10 @@ impl LspAdapter for NodeVersionAdapter {
}
fs::copy(
destination_container_path.join("package-version-server"),
destination_container_path.join(format!(
"package-version-server{}",
std::env::consts::EXE_SUFFIX
)),
&destination_path,
)
.await?;