fix: show proper installed/clean state for local plugins

This commit is contained in:
Folke Lemaitre 2022-11-30 23:05:51 +01:00
commit 1e2f5273bb
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
2 changed files with 6 additions and 0 deletions

View file

@ -105,6 +105,7 @@ M.fetch = {
skip = function(plugin)
return not plugin._.installed or plugin._.is_local
end,
run = function(self)
local args = {
"fetch",
@ -124,6 +125,7 @@ M.checkout = {
skip = function(plugin)
return not plugin._.installed or plugin._.is_local
end,
---@param opts {lockfile?:boolean}
run = function(self, opts)
local info = assert(Git.info(self.plugin.dir))