Skip to content

Commit 2e04a0c

Browse files
authored
fix(checker): ignore dev plugins (#1384)
1 parent 05240b4 commit 2e04a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/manage/checker.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ end
3535
function M.fast_check(opts)
3636
opts = opts or {}
3737
for _, plugin in pairs(Config.plugins) do
38-
if not plugin.pin and plugin._.installed then
38+
if not plugin.pin and not plugin.dev and plugin._.installed then
3939
plugin._.updates = nil
4040
local info = Git.info(plugin.dir)
4141
local ok, target = pcall(Git.get_target, plugin)

0 commit comments

Comments
 (0)