vscode: small post-refactor

This commit is contained in:
veetaha 2020-03-26 23:45:01 +02:00
parent e1a5e9565b
commit 261ef1c455

View file

@ -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;