executables: Invoke loader to allow mixing of old and new import style

Now both require"util.foo" and require"prosody.util.foo" should be
equivalent.
This commit is contained in:
Kim Alvefur 2023-03-17 16:29:07 +01:00
parent fc80e83b42
commit 763a2bb0ed
2 changed files with 8 additions and 0 deletions

View file

@ -51,6 +51,10 @@ if _VERSION < "Lua 5.2" then
return os.exit(1);
end
if not pcall(require, "prosody.loader") then
pcall(require, "loader");
end
local startup = require "util.startup";
local async = require "util.async";

View file

@ -51,6 +51,10 @@ if _VERSION < "Lua 5.2" then
return os.exit(1);
end
if not pcall(require, "prosody.loader") then
pcall(require, "loader");
end
local startup = require "util.startup";
startup.prosodyctl();