mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.modulemanager: Fix resource location compat with LuaRocks 2.x
The path doesn't include lua version, at least least on Debian, which still has luarocks 2.x
This commit is contained in:
parent
ea16bff7c8
commit
81181623fd
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ local function do_load_module(host, module_name, state)
|
|||
if not load_manifest then
|
||||
-- COMPAT Luarocks 2.x
|
||||
log("debug", "Could not load LuaRocks 3.x manifest, trying 2.x", err);
|
||||
luarocks_path = custom_plugins.."/lib/luarocks/rocks-"..lua_version;
|
||||
luarocks_path = custom_plugins.."/lib/luarocks/rocks";
|
||||
manifest_filename = luarocks_path.."/manifest";
|
||||
load_manifest, err = envload.envloadfile(manifest_filename, manifest);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue