mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-05 23:36:35 +00:00
fix: only run updated checker for installed plugins. Fixes #16
This commit is contained in:
parent
7225b055f5
commit
ae644a604d
1 changed files with 7 additions and 5 deletions
|
@ -16,11 +16,13 @@ end
|
|||
|
||||
function M.fast_check()
|
||||
for _, plugin in pairs(Config.plugins) do
|
||||
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
|
||||
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
|
||||
plugin._.has_updates = true
|
||||
end
|
||||
end
|
||||
end
|
||||
M.report()
|
||||
|
|
Loading…
Add table
Reference in a new issue