directories should not be loaded

This commit is contained in:
lqdev 2021-04-25 11:45:08 +02:00
parent 58422271ce
commit 5e8e2f54b5
1 changed files with 16 additions and 13 deletions

View File

@ -625,6 +625,8 @@ function core.load_plugins()
local plugin_dir = root_dir .. "/plugins"
local files = system.list_dir(plugin_dir)
for _, filename in ipairs(files or {}) do
local info = system.get_file_info(filename)
if info ~= nil and info.type == "file" then
local basename = filename:match("(.-)%.lua$") or filename
local version_match = check_plugin_version(plugin_dir .. '/' .. filename)
if not version_match then
@ -642,6 +644,7 @@ function core.load_plugins()
end
end
end
end
return no_errors, refused_list
end