mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dependencies: Load luarocks.loader/luarocks.require
This commit is contained in:
parent
27ff687531
commit
7086dd06fe
1 changed files with 5 additions and 0 deletions
|
@ -10,6 +10,11 @@ module("dependencies", package.seeall)
|
|||
|
||||
function softreq(...) local ok, lib = pcall(require, ...); if ok then return lib; else return nil, lib; end end
|
||||
|
||||
-- Required to be able to find packages installed with luarocks
|
||||
if not softreq "luarocks.loader" then -- LuaRocks 2.x
|
||||
softreq "luarocks.require"; -- LuaRocks <1.x
|
||||
end
|
||||
|
||||
function missingdep(name, sources, msg)
|
||||
print("");
|
||||
print("**************************");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue