diff options
Diffstat (limited to 'editors/code/src/client.ts')
-rw-r--r-- | editors/code/src/client.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editors/code/src/client.ts b/editors/code/src/client.ts index 743384bd7..1ff64a930 100644 --- a/editors/code/src/client.ts +++ b/editors/code/src/client.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | import { homedir } from 'os'; | 1 | import { homedir } from 'os'; |
2 | import * as lc from 'vscode-languageclient'; | 2 | import * as lc from 'vscode-languageclient'; |
3 | import { spawnSync } from 'child_process'; | ||
3 | 4 | ||
4 | import { window, workspace } from 'vscode'; | 5 | import { window, workspace } from 'vscode'; |
5 | import { Config } from './config'; | 6 | import { Config } from './config'; |
@@ -13,6 +14,9 @@ export function createClient(config: Config): lc.LanguageClient { | |||
13 | } | 14 | } |
14 | 15 | ||
15 | const command = expandPathResolving(config.raLspServerPath); | 16 | const command = expandPathResolving(config.raLspServerPath); |
17 | if (spawnSync(command, ["--version"]).status !== 0) { | ||
18 | window.showErrorMessage(`Unable to execute '${command} --version'`); | ||
19 | } | ||
16 | const run: lc.Executable = { | 20 | const run: lc.Executable = { |
17 | command, | 21 | command, |
18 | options: { cwd: folder }, | 22 | options: { cwd: folder }, |