Skip to content

Commit ae644a6

Browse files
committed
fix: only run updated checker for installed plugins. Fixes #16
1 parent 7225b05 commit ae644a6

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

lua/lazy/manage/checker.lua

+7-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ end
1616

1717
function M.fast_check()
1818
for _, plugin in pairs(Config.plugins) do
19-
plugin._.has_updates = nil
20-
local info = Git.info(plugin.dir)
21-
local target = Git.get_target(plugin)
22-
if info and target and info.commit ~= target.commit then
23-
plugin._.has_updates = true
19+
if plugin._.installed then
20+
plugin._.has_updates = nil
21+
local info = Git.info(plugin.dir)
22+
local target = Git.get_target(plugin)
23+
if info and target and info.commit ~= target.commit then
24+
plugin._.has_updates = true
25+
end
2426
end
2527
end
2628
M.report()

0 commit comments

Comments
 (0)