mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
fc80e83b42
commit
763a2bb0ed
2 changed files with 8 additions and 0 deletions
4
prosody
4
prosody
|
@ -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";
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue