diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-03-04 16:06:09 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-03-04 16:06:09 +0800 |
commit | 15bd41db7aefee219e81d2bb815303714aa300d9 (patch) | |
tree | 99184add216877a93e3c83e0f1bf50d32edbc9a3 /make | |
parent | 8456635ba30440ee7717aeda8927ddb7b2eb4954 (diff) | |
download | lua-language-server-15bd41db7aefee219e81d2bb815303714aa300d9.zip |
update install
Diffstat (limited to 'make')
-rw-r--r-- | make/install.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/install.lua b/make/install.lua index c5723ded..1ad0ed06 100644 --- a/make/install.lua +++ b/make/install.lua @@ -16,5 +16,6 @@ fs.copy_file(bindir / 'lua'..exe, output / 'lua-language-server'..exe, tru if platform == 'msvc' then fs.copy_file(bindir / 'lua54'..dll, output / 'lua54'..dll, true) - require 'msvc'.copy_crtdll('x64', output) + require 'msvc'.copy_vcrt('x64', output) + require 'msvc'.copy_ucrt('x64', output) end |