aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-11-03 22:19:09 +0100
committerKim Alvefur <zash@zash.se>2019-11-03 22:19:09 +0100
commitd3ec2e6fef757bdf9d40a4412945d9daae3142b4 (patch)
treea7a3ede7361f40e9950a35d77f633b446ff8e82a
parent6834e9cd6078109b32a4606710979a5b502903ed (diff)
downloadprosody-d3ec2e6fef757bdf9d40a4412945d9daae3142b4.tar.gz
prosody-d3ec2e6fef757bdf9d40a4412945d9daae3142b4.zip
util.startup: Update config path (fixes #1430)
-rw-r--r--util/startup.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/startup.lua b/util/startup.lua
index c101c290..82d0804d 100644
--- a/util/startup.lua
+++ b/util/startup.lua
@@ -33,7 +33,8 @@ function startup.read_config()
if file then
file:close();
prosody.config_file = filename;
- CFG_CONFIGDIR = filename:match("^(.*)[\\/][^\\/]*$"); -- luacheck: ignore 111
+ prosody.paths.config = filename:match("^(.*)[\\/][^\\/]*$");
+ CFG_CONFIGDIR = prosody.paths.config; -- luacheck: ignore 111
break;
end
end