aboutsummaryrefslogtreecommitdiffstats
path: root/util/startup.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-10-05 21:45:02 +0200
committerKim Alvefur <zash@zash.se>2020-10-05 21:45:02 +0200
commitdefba34a6c15adb6dbb2fcef71fb5b2852f1e493 (patch)
treeef55969d43c9cf96809e5287c5a52af3078296cb /util/startup.lua
parente9c3e1dedcb316b94764ecf0827f2c86998ade04 (diff)
downloadprosody-defba34a6c15adb6dbb2fcef71fb5b2852f1e493.tar.gz
prosody-defba34a6c15adb6dbb2fcef71fb5b2852f1e493.zip
util.startup: Re-enable installer path setup
Diffstat (limited to 'util/startup.lua')
-rw-r--r--util/startup.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/startup.lua b/util/startup.lua
index 339a11dc..fefedcbf 100644
--- a/util/startup.lua
+++ b/util/startup.lua
@@ -583,7 +583,7 @@ function startup.prosodyctl()
startup.init_gc();
startup.init_errors();
startup.setup_plugindir();
- -- startup.setup_plugin_install_path();
+ startup.setup_plugin_install_path();
startup.setup_datadir();
startup.chdir();
startup.read_version();
@@ -612,7 +612,7 @@ function startup.prosody()
startup.check_dependencies();
startup.load_libraries();
startup.setup_plugindir();
- -- startup.setup_plugin_install_path();
+ startup.setup_plugin_install_path();
startup.setup_datadir();
startup.chdir();
startup.add_global_prosody_functions();