We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff7acfe + ae26516 commit ae6a50aCopy full SHA for ae6a50a
src/main.js
@@ -23,7 +23,12 @@ class BashLanguageClient extends AutoLanguageClient {
23
// loaded
24
await new Promise(resolve => atom.whenShellEnvironmentLoaded(resolve));
25
26
- const command = 'bash-language-server'
+ if ( process.platform == 'win32') {
27
+ const command = 'bash-language-server.cmd'
28
+ } else {
29
+ const command = 'bash-language-server'
30
+ }
31
+
32
const args = ["start"]
33
34
const childProcess = ChildProcess.spawn(command, args, {
0 commit comments