mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
fix: debug into build.lua
This commit is contained in:
parent
64bb920f76
commit
7297eaa87d
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
||||||
local plugin_dir = vim.fn.fnamemodify(debug.getinfo(1, "S").source:sub(2), ":p:h") -- got this from https://lazy.folke.io/developers#building
|
local plugin_dir = vim.fn.fnamemodify(debug.getinfo(1, "S").source:sub(2), ":p:h") -- got this from https://lazy.folke.io/developers#building
|
||||||
local native_path = plugin_dir .. "/native.so" -- TODO get extension based on platform
|
local native_path = plugin_dir .. "/native.so" -- TODO get extension based on platform
|
||||||
local download_url = "https://codemp.dev/releases/lua/codemp_native-linux.so" -- TODO get url based on platform
|
local download_url = "https://codemp.dev/releases/lua/codemp_native-linux.so" -- TODO get url based on platform
|
||||||
vim.system({"curl", "-s", "-o", native_path, download_url }) -- TODO can we run this asynchronously?
|
print("downloading '" .. download_url .. "' into " .. native_path)
|
||||||
|
local res = vim.system({"curl", "-s", "-o", native_path, download_url }):wait() -- TODO can we run this asynchronously?
|
||||||
|
print("downloaded: " .. res)
|
||||||
|
|
Loading…
Reference in a new issue