Skip to content

Commit 672669a

Browse files
committed
follow up changing of bin
1 parent c8a3443 commit 672669a

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

client/out/languageserver.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/languageserver.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,7 @@ function start(context: ExtensionContext, documentSelector: DocumentSelector, fo
114114
command = context.asAbsolutePath(
115115
path.join(
116116
'server',
117-
'bin',
118-
'Windows',
117+
'bin-Windows',
119118
'lua-language-server.exe'
120119
)
121120
);
@@ -124,8 +123,7 @@ function start(context: ExtensionContext, documentSelector: DocumentSelector, fo
124123
command = context.asAbsolutePath(
125124
path.join(
126125
'server',
127-
'bin',
128-
'Linux',
126+
'bin-Linux',
129127
'lua-language-server'
130128
)
131129
);
@@ -135,8 +133,7 @@ function start(context: ExtensionContext, documentSelector: DocumentSelector, fo
135133
command = context.asAbsolutePath(
136134
path.join(
137135
'server',
138-
'bin',
139-
'macOS',
136+
'bin-macOS',
140137
'lua-language-server'
141138
)
142139
);

0 commit comments

Comments
 (0)