Skip to content

Commit 3d2dcb2

Browse files
committed
fix(log): properly check if plugin dir is a git repo before running git log
1 parent 527f83c commit 3d2dcb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/manage/task/git.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ M.log = {
1515
return true
1616
end
1717
local stat = vim.loop.fs_stat(plugin.dir .. "/.git")
18-
return stat and stat.type ~= "directory"
18+
return not (stat and stat.type == "directory")
1919
end,
2020
---@param opts {args?: string[], updated?:boolean, check?:boolean}
2121
run = function(self, opts)

0 commit comments

Comments
 (0)