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 | c5b914260a423c3eed1f1b2d78bdfde3d03daef1 (patch) | |
tree | a7a3ede7361f40e9950a35d77f633b446ff8e82a /util/startup.lua | |
parent | 7ad5df7a4aa3ef7270081cf4ccf16a7a7f5aa5fa (diff) | |
download | prosody-c5b914260a423c3eed1f1b2d78bdfde3d03daef1.tar.gz prosody-c5b914260a423c3eed1f1b2d78bdfde3d03daef1.zip |
util.startup: Update config path (fixes #1430)
Diffstat (limited to 'util/startup.lua')
-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 |