summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-09-20 14:12:23 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-09-20 14:12:23 +0800
commit99357fa1782f409201efe502713efce011015da8 (patch)
treea68b359c65f8244facc2235ca0f72b9464e77be6 /make
parentf0fa85971692ec7ff98f31230c11d1e9f1f7c362 (diff)
downloadlua-language-server-99357fa1782f409201efe502713efce011015da8.zip
修改文件名
Diffstat (limited to 'make')
-rw-r--r--make/install.lua4
-rw-r--r--make/unittest.lua2
2 files changed, 3 insertions, 3 deletions
diff --git a/make/install.lua b/make/install.lua
index 8d6e6764..787ea652 100644
--- a/make/install.lua
+++ b/make/install.lua
@@ -13,7 +13,7 @@ fs.create_directories(output)
fs.copy_file(bindir / 'lni'..dll, output / 'lni'..dll, true)
fs.copy_file(bindir / 'lpeglabel'..dll, output / 'lpeglabel'..dll, true)
fs.copy_file(bindir / 'bee'..dll, output / 'bee'..dll, true)
-fs.copy_file(bindir / 'lua'..exe, output / 'lua-language-server'..exe, true)
+fs.copy_file(bindir / 'lua'..exe, output / 'lua'..exe, true)
local bootstrap = CWD / "3rd" / "bee.lua" / "bootstrap"
fs.copy_file(bootstrap / "main.lua", CWD / 'build' / "main.lua", true)
@@ -29,7 +29,7 @@ if platform == 'msvc' then
local process = assert(sp.spawn {
bindir / 'rcedit.exe',
- output / 'lua-language-server.exe',
+ output / 'lua.exe',
'--set-icon',
CWD / 'images' / 'icon.ico'
})
diff --git a/make/unittest.lua b/make/unittest.lua
index e8ae190b..eb9eda66 100644
--- a/make/unittest.lua
+++ b/make/unittest.lua
@@ -6,7 +6,7 @@ local exe = platform == 'msvc' and ".exe" or ""
local CWD = fs.current_path()
local process = assert(sp.spawn {
- CWD / 'server' / pf.OS / 'bin' / ('lua-language-server' .. exe),
+ CWD / 'server' / pf.OS / 'bin' / ('lua' .. exe),
CWD / 'server' / 'test.lua',
'-E',
stdout = true,