diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-11-22 17:46:55 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-11-22 17:46:55 +0800 |
commit | d5c4adc4e6cdade27dee5014dc71c2b39aaaba76 (patch) | |
tree | a476cfba3ca61d59c70e5afbc0257190da16975d /make | |
parent | 50fa8dba7fc031caa7a3fdc1349d2dc9f0f4080e (diff) | |
download | lua-language-server-d5c4adc4e6cdade27dee5014dc71c2b39aaaba76.zip |
lua.exe 改名为 lua-language-server
Diffstat (limited to 'make')
-rw-r--r-- | make/install.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/install.lua b/make/install.lua index 787ea652..43e3b1e0 100644 --- a/make/install.lua +++ b/make/install.lua @@ -18,7 +18,7 @@ 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) fs.copy_file(bindir / ('bee'..dll), CWD / 'build' / ('bee'..dll), true) -fs.copy_file(bindir / ('bootstrap'..exe), CWD / 'build' / ('lua'..exe), true) +fs.copy_file(bindir / ('bootstrap'..exe), CWD / 'build' / ('lua-language-server'..exe), true) if platform == 'msvc' then fs.copy_file(bindir / 'lua54.dll', CWD / 'build' / 'lua54.dll', true) end @@ -29,7 +29,7 @@ if platform == 'msvc' then local process = assert(sp.spawn { bindir / 'rcedit.exe', - output / 'lua.exe', + output / 'lua-language-server.exe', '--set-icon', CWD / 'images' / 'icon.ico' }) |