Skip to content

Commit

Permalink
fix(checker): ignore dev plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
kevintraver committed Mar 25, 2024
1 parent 08954f7 commit 3a7fea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazy/manage/checker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ end
function M.fast_check(opts)
opts = opts or {}
for _, plugin in pairs(Config.plugins) do
if not plugin.pin and plugin._.installed then
if not plugin.pin and not plugin.dev and plugin._.installed then
plugin._.updates = nil
local info = Git.info(plugin.dir)
local ok, target = pcall(Git.get_target, plugin)
Expand Down

0 comments on commit 3a7fea1

Please sign in to comment.