diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 6cde5c3667..980ed925b4 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;