diff options
author | Kim Alvefur <zash@zash.se> | 2023-01-22 15:43:44 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2023-01-22 15:43:44 +0100 |
commit | 9228a851bc4b93bf442a62b8b7392ee087374bea (patch) | |
tree | f85923490900529d25cf8e3873091df374ee7cf4 /prosodyctl | |
parent | 27d63ff731ebeb2ada1fcc1d812c0fa637de35b3 (diff) | |
parent | 435e008568a0590f89e3b6477b9d6ded3ac024b4 (diff) | |
download | prosody-9228a851bc4b93bf442a62b8b7392ee087374bea.tar.gz prosody-9228a851bc4b93bf442a62b8b7392ee087374bea.zip |
Merge 0.12->trunk
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -670,11 +670,11 @@ local command_runner = async.runner(function () local ok, ret = modulemanager.call_module_method(module, "command", arg); if ok then if type(ret) == "number" then - os.exit(ret); + os.exit(ret, true); elseif type(ret) == "string" then show_message(ret); end - os.exit(0); -- :) + os.exit(0, true); -- :) else show_message("Failed to execute command: "..error_messages[ret]); os.exit(1); -- :( @@ -752,10 +752,10 @@ local command_runner = async.runner(function () end - os.exit(0); + os.exit(0, true); end - os.exit(commands[command](arg)); + os.exit(commands[command](arg), true); end, watchers); command_runner:run(true); |