diff options
-rw-r--r-- | editors/code/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index dbb241192..42685e0c7 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts | |||
@@ -280,7 +280,7 @@ async function getServer(config: Config, state: PersistentState): Promise<string | |||
280 | await download(artifact.browser_download_url, dest, "Downloading rust-analyzer server", { mode: 0o755 }); | 280 | await download(artifact.browser_download_url, dest, "Downloading rust-analyzer server", { mode: 0o755 }); |
281 | 281 | ||
282 | // Patching executable if that's NixOS. | 282 | // Patching executable if that's NixOS. |
283 | if (fs.stat("/etc/nixos").then(_ => true).catch(_ => false)) { | 283 | if (await fs.stat("/etc/nixos").then(_ => true).catch(_ => false)) { |
284 | await patchelf(dest); | 284 | await patchelf(dest); |
285 | } | 285 | } |
286 | 286 | ||