mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
fix: don't check updates for local plugins
This commit is contained in:
parent
eb4957442e
commit
9de0eedb3e
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ local M = {}
|
|||
M.log = {
|
||||
---@param opts {updated?:boolean, check?: boolean}
|
||||
skip = function(plugin, opts)
|
||||
if opts.check and plugin.pin then
|
||||
if opts.check and (plugin.pin or plugin._.is_local) then
|
||||
return true
|
||||
end
|
||||
if opts.updated and not (plugin._.updated and plugin._.updated.from ~= plugin._.updated.to) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue