aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-10-05 21:54:17 +0200
committerKim Alvefur <zash@zash.se>2020-10-05 21:54:17 +0200
commit37bcd4270edd9923e495bd94fc7e888eade0baca (patch)
tree25601de4b090e8b64f85b966ea96d99fb6420c93 /util
parent9b24947796e4af6ec340a6267efa2b5a2638152c (diff)
downloadprosody-37bcd4270edd9923e495bd94fc7e888eade0baca.tar.gz
prosody-37bcd4270edd9923e495bd94fc7e888eade0baca.zip
util.startup: Fix startup failure if CFG_DATADIR is unset
As is normal when running from source
Diffstat (limited to 'util')
-rw-r--r--util/startup.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/startup.lua b/util/startup.lua
index fefedcbf..b7d9f6fe 100644
--- a/util/startup.lua
+++ b/util/startup.lua
@@ -260,7 +260,7 @@ function startup.setup_plugindir()
end
function startup.setup_plugin_install_path()
- local installer_plugin_path = config.get("*", "installer_plugin_path") or CFG_DATADIR.."/custom_plugins";
+ local installer_plugin_path = config.get("*", "installer_plugin_path") or (CFG_DATADIR or "data").."/custom_plugins";
local path_sep = package.config:sub(3,3);
-- TODO Figure out what this should be relative to, because CWD could be anywhere
installer_plugin_path = config.resolve_relative_path(require "lfs".currentdir(), installer_plugin_path);