Skip to content

Commit

Permalink
fix(checker): ignore dev plugins (#1384)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevintraver committed May 18, 2024
1 parent 05240b4 commit 2e04a0c
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 2e04a0c

Please sign in to comment.