util.pluginloader: Look for module libs in mod_plugin/lib.lua

Luarocks can't be told to install something as foo.lib.lua AFAIK, so
instead let's try mod_bar/foo.lua
This commit is contained in:
Kim Alvefur 2020-10-05 20:58:37 +02:00
parent 19549a6976
commit 0113f59de0

View file

@ -60,6 +60,9 @@ end
local function load_code_ext(plugin, resource, extension, env) local function load_code_ext(plugin, resource, extension, env)
local content, err = load_resource(plugin, resource.."."..extension); local content, err = load_resource(plugin, resource.."."..extension);
if not content and extension == "lib.lua" then
content, err = load_resource(plugin, resource..".lua");
end
if not content then if not content then
content, err = load_resource(resource, resource.."."..extension); content, err = load_resource(resource, resource.."."..extension);
if not content then if not content then