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 | 08d0a26c8c614aeafbaa990f55b3d3372d88dbb5 (patch) | |
tree | e95dae11ade80efa04f7ddded1947c8cf29feb02 /prosodyctl | |
parent | 1a3edc0ab921f131c7304e92d7402ef88ff465ef (diff) | |
download | prosody-08d0a26c8c614aeafbaa990f55b3d3372d88dbb5.tar.gz prosody-08d0a26c8c614aeafbaa990f55b3d3372d88dbb5.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 |