aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xprosody4
-rwxr-xr-xprosodyctl4
2 files changed, 8 insertions, 0 deletions
diff --git a/prosody b/prosody
index eaac3dff..b300059f 100755
--- a/prosody
+++ b/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";
diff --git a/prosodyctl b/prosodyctl
index 337b3593..55d71cf6 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -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();