Skip to content

Commit

Permalink
fix(manage): dont skip install for plugins that need a build, but don…
Browse files Browse the repository at this point in the history
…t have an url (like local plugins). Fixes #1563
  • Loading branch information
folke committed Jun 27, 2024
1 parent 53f314d commit a0391c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/manage/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit a0391c3

Please sign in to comment.