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:
Folke Lemaitre 2024-06-27 11:32:00 +02:00
parent 53f314d9e6
commit a0391c3e21
No known key found for this signature in database
GPG Key ID: 41F8B1FBACAE2040
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ function M.install(opts)
"plugin.build", "plugin.build",
}, },
plugins = function(plugin) plugins = function(plugin)
return plugin.url and not (plugin._.installed and not plugin._.build) return not (plugin._.installed and not plugin._.build)
end, end,
}, opts):wait(function() }, opts):wait(function()
require("lazy.manage.lock").update() require("lazy.manage.lock").update()