util.startup: Only ask if 'prosodyctl' was meant instead of 'prosody' (fix #1692)

This commit is contained in:
Kim Alvefur 2021-10-12 15:00:15 +02:00
parent 8145673928
commit 14367c5ef7

View file

@ -38,7 +38,9 @@ function startup.parse_args()
if not opts then if not opts then
if err == "param-not-found" then if err == "param-not-found" then
print("Unknown command-line option: "..tostring(where)); print("Unknown command-line option: "..tostring(where));
print("Perhaps you meant to use prosodyctl instead?"); if prosody.process_type == "prosody" then
print("Perhaps you meant to use prosodyctl instead?");
end
elseif err == "missing-value" then elseif err == "missing-value" then
print("Expected a value to follow command-line option: "..where); print("Expected a value to follow command-line option: "..where);
end end