prosodyctl: Return non-zero status to indicate error

This commit is contained in:
Kim Alvefur 2017-04-21 14:20:46 +02:00
parent 3c2a15fa08
commit c732b4835f

View file

@ -838,7 +838,7 @@ function commands.cert(arg)
end
if arg[1] ~= "--help" and not hosts[arg[1]] then
show_message(error_messages["no-such-host"]);
return
return 1;
end
return cert_commands[subcmd](arg);
end