chore: only check files inside rockspecs directory

This commit is contained in:
infastin 2025-01-14 23:18:46 +05:00
parent a17180d7a9
commit 7190e015cb

View file

@ -260,9 +260,11 @@ function M.find_rockspec(plugin)
Util.ls(plugin.dir, function(path, name, t)
if t == "directory" and name == "rockspecs" then
Util.ls(path, function(path, name, t)
rockspec_file = check_file(path, name)
if rockspec_file ~= nil then
return false
if t == "file" then
rockspec_file = check_file(path, name)
if rockspec_file ~= nil then
return false
end
end
end)
if rockspec_file ~= nil then