From e852ba6e796cc1986995458e53571ac60e505a71 Mon Sep 17 00:00:00 2001 From: alemi Date: Tue, 10 Sep 2024 16:23:01 +0200 Subject: [PATCH] chore: print download url --- build.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.lua b/build.lua index 11cdf88..461905a 100644 --- a/build.lua +++ b/build.lua @@ -21,7 +21,7 @@ end local native_path = plugin_dir .. "/lua/codemp/new-native." .. ext local replace_native_path = plugin_dir .. "/lua/codemp/native." .. ext local download_url_native = string.format("https://code.mp/releases/lua/codemp-lua-%s-%s.%s", arch, platform, ext) -print("downloading codemp native lua extension...") +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? print("downloaded! exit nvim to reload library")