fix: show proper installed/clean state for local plugins

This commit is contained in:
Folke Lemaitre 2022-11-30 23:05:51 +01:00
parent 39c7e21c5f
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

@ -37,6 +37,8 @@ M.symlink = {
if stat then
assert(stat.type == "link")
if vim.loop.fs_realpath(self.plugin.uri) == vim.loop.fs_realpath(self.plugin.dir) then
self.plugin._.installed = true
self.plugin._.cloned = true
return
else
vim.loop.fs_unlink(self.plugin.dir)
@ -44,6 +46,8 @@ M.symlink = {
end
vim.loop.fs_symlink(self.plugin.uri, self.plugin.dir, { dir = true })
vim.opt.runtimepath:append(self.plugin.uri)
self.plugin._.installed = true
self.plugin._.cloned = true
end,
}

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))