Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
spitzerd committed Sep 2, 2024
1 parent a559669 commit 97a4f8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DependencyManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -530,9 +530,9 @@ export default class DependencyManager {
env['JAVA_OPTS'] = javaArguments.join(' ');

if (DependencyManager._isWindows) {
return {command: ltexLsScriptPath, args: [], options: {'env': env, 'shell': true}};
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 97a4f8e

Please sign in to comment.