diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-03 22:19:09 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-03 22:19:09 +0100 |
commit | d3ec2e6fef757bdf9d40a4412945d9daae3142b4 (patch) | |
tree | a7a3ede7361f40e9950a35d77f633b446ff8e82a | |
parent | 6834e9cd6078109b32a4606710979a5b502903ed (diff) | |
download | prosody-d3ec2e6fef757bdf9d40a4412945d9daae3142b4.tar.gz prosody-d3ec2e6fef757bdf9d40a4412945d9daae3142b4.zip |
util.startup: Update config path (fixes #1430)
-rw-r--r-- | util/startup.lua | 3 |
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 |