Skip to content

Commit 0c12e70

Browse files
authored
setting the path as command to shell (fixes #432) (#433)
* setting the path as command to shell (fixes #432 (comment)) * fix
1 parent b0e7ba5 commit 0c12e70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/languageClientManager.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ function startClient(
4545
clientOptions: LanguageClientOptions
4646
): [LanguageClient, Promise<LanguageClient>, Disposable[]] {
4747
const serverOpts: Executable = {
48-
command: buildCommand(
48+
command: `"${buildCommand(
4949
context,
5050
"language_server",
5151
clientOptions.workspaceFolder
52-
),
52+
)}"`,
5353
options: { shell: true },
5454
};
5555

0 commit comments

Comments
 (0)