mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-04-05 23:36:35 +00:00
fix: checker should not error on non-existing dirs
This commit is contained in:
parent
50ba619d9e
commit
ddf36d7748
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@ function M.fast_check()
|
|||
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
|
||||
local ok, target = pcall(Git.get_target, plugin)
|
||||
if ok and info and target and info.commit ~= target.commit then
|
||||
plugin._.has_updates = true
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue