Skip to content

Commit

Permalink
Fixes valentjn/vscode-ltex#887 (Windows only)
Browse files Browse the repository at this point in the history
  • Loading branch information
spitzerd committed Sep 2, 2024
1 parent 97a4f8e commit 31faf19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DependencyManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ export default class DependencyManager {
if (DependencyManager._isWindows) {
return {command: '"'+ltexLsScriptPath+'"', args: [], options: {'env': env, 'shell': true}};
} else {
return {command: '"'+ltexLsScriptPath+'"', args: [], options: {'env': env}};
return {command: ltexLsScriptPath, args: [], options: {'env': env}};
}
}

Expand Down

0 comments on commit 31faf19

Please sign in to comment.