From c2946844f98ad4880fcaa30edf1e5d5b3b42e96a Mon Sep 17 00:00:00 2001 From: siduck Date: Sun, 8 Jan 2023 07:59:17 +0530 Subject: [PATCH] rm unneeded whitespace in lazy-lock url --- lua/core/bootstrap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/bootstrap.lua b/lua/core/bootstrap.lua index fac437e..f5bd292 100644 --- a/lua/core/bootstrap.lua +++ b/lua/core/bootstrap.lua @@ -4,7 +4,7 @@ M.lazy = function(install_path) print "Downloading lazy-lock.json file..." local config_branch = require("core.utils").load_config().options.nvChad.update_branch - local lazy_local_url = "https://raw.githubusercontent.com/NvChad/extensions/lazy-lock/" .. config_branch .. ".json " + local lazy_local_url = "https://raw.githubusercontent.com/NvChad/extensions/lazy-lock/" .. config_branch .. ".json" vim.fn.system { "curl", "-o", "lazy-lock.json", lazy_local_url }