Moved one line below to keep it consistent

This commit is contained in:
Murilo Ghignatti 2023-07-25 08:00:02 -03:00
commit c2a1469b4b
2 changed files with 7 additions and 4 deletions

3
.luarc.json Normal file
View file

@ -0,0 +1,3 @@
{
"workspace.checkThirdParty": false
}

View file

@ -67,14 +67,14 @@ M.clone = {
self.plugin.url,
}
if self.plugin.shallow ~= false then
args[#args+1] = "--depth=1"
end
if Config.options.git.filter then
args[#args + 1] = "--filter=blob:none"
end
if self.plugin.shallow ~= false then
args[#args+1] = "--depth=1"
end
if self.plugin.submodules ~= false then
args[#args + 1] = "--recurse-submodules"
end