fix: hopefully more windows-friendly installer

i don't have a windows machine to test this, please if you use nvim on
windows let me know if this works and what breaks!!
This commit is contained in:
əlemi 2024-09-16 20:38:17 +02:00
parent 0a3e37c94d
commit 493f599ec2
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -24,11 +24,21 @@ end
-- shasum = vim.fn.system("sha256sum " .. path .. 'native' .. ext) -- shasum = vim.fn.system("sha256sum " .. path .. 'native' .. ext)
-- end -- end
local native_path = plugin_dir .. "/lua/codemp/new-native." .. ext local sep = '/'
local replace_native_path = plugin_dir .. "/lua/codemp/native." .. ext if os_uname.sysname == "Windows_NT" then sep = '\\' end
local native_path = plugin_dir..sep.."lua"..sep.."codemp"..sep.."new-native."..ext
local replace_native_path = plugin_dir..sep.."lua"..sep.."codemp"..sep.."native."..ext
local download_url_native = string.format("https://codemp.dev/releases/lua/codemp-lua-%s-%s.%s", arch, platform, ext) local download_url_native = string.format("https://codemp.dev/releases/lua/codemp-lua-%s-%s.%s", arch, platform, ext)
local command = {
Windows_NT = { "Invoke-WebRequest", download_url_native, "-OutFile", native_path },
Linux = {"curl", "-o", native_path, download_url_native },
Mac = {"curl", "-o", native_path, download_url_native },
}
print("downloading codemp native lua extension from '" .. download_url_native .. "' ...") print("downloading codemp native lua extension from '" .. download_url_native .. "' ...")
vim.system({"curl", "-s", "-o", native_path, download_url_native }):wait() -- TODO can we run this asynchronously? vim.system(command[os_uname.sysname]):wait() -- TODO can we run this asynchronously?
print("downloaded! exit nvim to reload library") print("downloaded! exit nvim to reload library")
vim.api.nvim_create_autocmd( vim.api.nvim_create_autocmd(