We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7225b05 commit ae644a6Copy full SHA for ae644a6
lua/lazy/manage/checker.lua
@@ -16,11 +16,13 @@ end
16
17
function M.fast_check()
18
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
+ if plugin._.installed then
+ plugin._.has_updates = nil
+ local info = Git.info(plugin.dir)
+ local target = Git.get_target(plugin)
+ if info and target and info.commit ~= target.commit then
24
+ plugin._.has_updates = true
25
+ end
26
end
27
28
M.report()
0 commit comments