mirror of https://github.com/folke/lazy.nvim.git
fix(manage): dont skip install for plugins that need a build, but dont have an url (like local plugins). Fixes #1563
This commit is contained in:
parent
53f314d9e6
commit
a0391c3e21
|
@ -95,7 +95,7 @@ function M.install(opts)
|
|||
"plugin.build",
|
||||
},
|
||||
plugins = function(plugin)
|
||||
return plugin.url and not (plugin._.installed and not plugin._.build)
|
||||
return not (plugin._.installed and not plugin._.build)
|
||||
end,
|
||||
}, opts):wait(function()
|
||||
require("lazy.manage.lock").update()
|
||||
|
|
Loading…
Reference in New Issue