diff options
Diffstat (limited to 'make/install.lua')
-rw-r--r-- | make/install.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/make/install.lua b/make/install.lua index 910dab9e..448c266f 100644 --- a/make/install.lua +++ b/make/install.lua @@ -5,14 +5,13 @@ local CWD = fs.current_path() local output = CWD / 'server' / 'bin' local bindir = CWD / 'build' / 'msvc' / 'bin' -local beedir = CWD / '3rd' / 'bee.lua' / 'bin' / 'msvc_x86_release' 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(beedir / 'bee.dll', output / 'bee.dll', true) -fs.copy_file(beedir / 'lua54.dll', output / 'lua54.dll', true) -fs.copy_file(beedir / 'lua.exe', output / 'lua-language-server.exe', true) +fs.copy_file(bindir / 'bee.dll', output / 'bee.dll', true) +fs.copy_file(bindir / 'lua54.dll', output / 'lua54.dll', true) +fs.copy_file(bindir / 'lua.exe', output / 'lua-language-server.exe', true) local process = assert(sp.spawn { |