We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 527f83c commit 3d2dcb2Copy full SHA for 3d2dcb2
lua/lazy/manage/task/git.lua
@@ -15,7 +15,7 @@ M.log = {
15
return true
16
end
17
local stat = vim.loop.fs_stat(plugin.dir .. "/.git")
18
- return stat and stat.type ~= "directory"
+ return not (stat and stat.type == "directory")
19
end,
20
---@param opts {args?: string[], updated?:boolean, check?:boolean}
21
run = function(self, opts)
0 commit comments