diff options
author | Kim Alvefur <zash@zash.se> | 2019-01-10 15:25:38 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-01-10 15:25:38 +0100 |
commit | 1e4a0ebba24834980440a61636601732b762e397 (patch) | |
tree | e95dae11ade80efa04f7ddded1947c8cf29feb02 /prosodyctl | |
parent | 8d8c6bd619ded1b202ebd19bda33bde475c4c37d (diff) | |
download | prosody-1e4a0ebba24834980440a61636601732b762e397.tar.gz prosody-1e4a0ebba24834980440a61636601732b762e397.zip |
prosodyctl: Use the same runtime for starting prosody
Improves the experience with the `make integration-test` command
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -222,7 +222,7 @@ function commands.start(arg) end --luacheck: ignore 411/ret - local ok, ret = prosodyctl.start(prosody.paths.source); + local ok, ret = prosodyctl.start(prosody.paths.source, arg[-1]); if ok then local daemonize = configmanager.get("*", "daemonize"); if daemonize == nil then |