fix(installer): actually pass what should be passed
This commit is contained in:
parent
1b2d4f7f93
commit
670bf62cc6
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ end
|
||||||
---@param opts? {sync:boolean}
|
---@param opts? {sync:boolean}
|
||||||
function installer.install_deps(opts)
|
function installer.install_deps(opts)
|
||||||
opts = opts or {}
|
opts = opts or {}
|
||||||
for url, _ in pairs(urls) do
|
for _, url in pairs(urls) do
|
||||||
if opts.sync then
|
if opts.sync then
|
||||||
install_sync(url)
|
install_sync(url)
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue