summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authoractboy168 <actboy168@gmail.com>2020-04-20 10:54:18 +0800
committeractboy168 <actboy168@gmail.com>2020-04-20 10:54:18 +0800
commitd48e7f52fbfa43862bd21c0de008b9f6dd08dfb9 (patch)
tree007aee08050ded5a98d44d52f3cf99a600593076 /make
parent2ee0d23ee6eaa5d6742cf24f84bf6ae86ef8eb04 (diff)
downloadlua-language-server-d48e7f52fbfa43862bd21c0de008b9f6dd08dfb9.zip
修改几个小问题
Diffstat (limited to 'make')
-rw-r--r--make/install.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/make/install.lua b/make/install.lua
index 515264cc..c5984a98 100644
--- a/make/install.lua
+++ b/make/install.lua
@@ -9,15 +9,6 @@ local bindir = CWD / 'build' / platform / 'bin'
local exe = platform == 'msvc' and ".exe" or ""
local dll = platform == 'msvc' and ".dll" or ".so"
-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' / ('bootstrap'..exe), true)
-fs.copy_file(bindir / 'lua'..exe, CWD / 'build' / ('lua'..exe), true)
-if platform == 'msvc' then
- fs.copy_file(bindir / 'lua54.dll', CWD / 'build' / 'lua54.dll', true)
-end
-
fs.create_directories(output)
fs.copy_file(bindir / 'lni'..dll, output / 'lni'..dll, true)
fs.copy_file(bindir / 'lpeglabel'..dll, output / 'lpeglabel'..dll, true)