From 670bf62cc61af38be5cae8ee9188b1f241219612 Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Fri, 21 Mar 2025 21:54:32 +0200 Subject: [PATCH] fix(installer): actually pass what should be passed --- lua/gopher/installer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/gopher/installer.lua b/lua/gopher/installer.lua index d93d7a2..cc61f92 100644 --- a/lua/gopher/installer.lua +++ b/lua/gopher/installer.lua @@ -45,7 +45,7 @@ end ---@param opts? {sync:boolean} function installer.install_deps(opts) opts = opts or {} - for url, _ in pairs(urls) do + for _, url in pairs(urls) do if opts.sync then install_sync(url) else