fix(installer): actually pass what should be passed

This commit is contained in:
Oleksandr Smirnov 2025-03-21 21:54:32 +02:00
parent 1b2d4f7f93
commit 670bf62cc6
No known key found for this signature in database

View file

@ -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