Skip to content

Commit

Permalink
setting the path as command to shell (fixes #432) (#433)
Browse files Browse the repository at this point in the history
* setting the path as command to shell (fixes #432 (comment))

* fix
  • Loading branch information
Aulk98 authored Aug 10, 2024
1 parent b0e7ba5 commit 0c12e70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/languageClientManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ function startClient(
clientOptions: LanguageClientOptions
): [LanguageClient, Promise<LanguageClient>, Disposable[]] {
const serverOpts: Executable = {
command: buildCommand(
command: `"${buildCommand(
context,
"language_server",
clientOptions.workspaceFolder
),
)}"`,
options: { shell: true },
};

Expand Down

0 comments on commit 0c12e70

Please sign in to comment.