aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/main.ts
diff options
context:
space:
mode:
authorVladimir Serov <[email protected]>2020-05-21 16:49:30 +0100
committerVladimir Serov <[email protected]>2020-05-21 16:49:30 +0100
commit8e0d776369f807c1d3f60abb899d2fe0d83570d4 (patch)
tree285bece9f5eb96b0a25f87c5b9d570df62c631a7 /editors/code/src/main.ts
parent125e4197d8af1eca498e0088aa37cf48e0b3827e (diff)
editor/vscode: lint
Diffstat (limited to 'editors/code/src/main.ts')
-rw-r--r--editors/code/src/main.ts42
1 files changed, 21 insertions, 21 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 0a2c30594..1c6e3093b 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -192,13 +192,13 @@ async function bootstrapServer(config: Config, state: PersistentState): Promise<
192async function patchelf(dest: PathLike): Promise<void> { 192async function patchelf(dest: PathLike): Promise<void> {
193 await vscode.window.withProgress( 193 await vscode.window.withProgress(
194 { 194 {
195 location: vscode.ProgressLocation.Notification, 195 location: vscode.ProgressLocation.Notification,
196 title: "Patching rust-analysis for NixOS" 196 title: "Patching rust-analysis for NixOS"
197 }, 197 },
198 async (progress, _) => { 198 async (progress, _) => {
199 let patch_path = path.join(os.tmpdir(), "patch-ra.nix") 199 const patchPath = path.join(os.tmpdir(), "patch-ra.nix");
200 progress.report({message: "Writing nix file", increment: 5}) 200 progress.report({ message: "Writing nix file", increment: 5 });
201 await fs.writeFile(patch_path, ` 201 await fs.writeFile(patchPath, `
202 {src, pkgs ? import <nixpkgs> {}}: 202 {src, pkgs ? import <nixpkgs> {}}:
203 pkgs.stdenv.mkDerivation { 203 pkgs.stdenv.mkDerivation {
204 name = "rust-analyzer"; 204 name = "rust-analyzer";
@@ -210,23 +210,23 @@ async function patchelf(dest: PathLike): Promise<void> {
210 patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out 210 patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out
211 ''; 211 '';
212 } 212 }
213 `) 213 `);
214 let orig_file = dest + "-orig" 214 const origFile = dest + "-orig";
215 await fs.rename(dest, orig_file) 215 await fs.rename(dest, origFile);
216 progress.report({message: "Patching executable", increment: 20}) 216 progress.report({ message: "Patching executable", increment: 20 });
217 await new Promise((resolve, reject) => { 217 await new Promise((resolve, reject) => {
218 exec(`nix-build ${patch_path} --arg src '${orig_file}' -o ${dest}`, 218 exec(`nix-build ${patchPath} --arg src '${origFile}' -o ${dest}`,
219 (err, stdout, stderr) => { 219 (err, stdout, stderr) => {
220 if (err != null) { 220 if (err != null) {
221 reject(Error(stderr)) 221 reject(Error(stderr));
222 } else { 222 } else {
223 resolve(stdout) 223 resolve(stdout);
224 } 224 }
225 }) 225 });
226 }) 226 });
227 await fs.unlink(orig_file) 227 await fs.unlink(origFile);
228 } 228 }
229 ) 229 );
230} 230}
231 231
232async function getServer(config: Config, state: PersistentState): Promise<string | undefined> { 232async function getServer(config: Config, state: PersistentState): Promise<string | undefined> {
@@ -281,7 +281,7 @@ async function getServer(config: Config, state: PersistentState): Promise<string
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 (fs.stat("/etc/nixos").then(_ => true).catch(_ => false)) {
284 await patchelf(dest) 284 await patchelf(dest);
285 } 285 }
286 286
287 await state.updateServerVersion(config.package.version); 287 await state.updateServerVersion(config.package.version);