about summary refs log tree commit diff
path: root/editors/code/src
diff options
context:
space:
mode:
authorveetaha <veetaha2@gmail.com>2020-03-26 23:45:01 +0200
committerveetaha <veetaha2@gmail.com>2020-03-26 23:45:01 +0200
commit261ef1c4555839c2f054ead8dd622b20e1a39106 (patch)
tree4e34ebd96d8120c6f1a3b2c543e9b97b2d9a0098 /editors/code/src
parente1a5e9565b9ef741f337251bef98ca70279f77eb (diff)
downloadrust-261ef1c4555839c2f054ead8dd622b20e1a39106.tar.gz
rust-261ef1c4555839c2f054ead8dd622b20e1a39106.zip
vscode: small post-refactor
Diffstat (limited to 'editors/code/src')
-rw-r--r--editors/code/src/main.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 6cde5c36679..980ed925b43 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -169,9 +169,7 @@ async function bootstrapServer(config: Config, state: PersistentState): Promise<
     log.debug("Checked binary availability via --version", res);
     log.debug(res, "--version output:", res.output);
     if (res.status !== 0) {
-        throw new Error(
-            `Failed to execute ${path} --version`
-        );
+        throw new Error(`Failed to execute ${path} --version`);
     }
 
     return path;