mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.startup: Only ask if 'prosodyctl' was meant instead of 'prosody' (fix #1692)
This commit is contained in:
parent
8145673928
commit
14367c5ef7
1 changed files with 3 additions and 1 deletions
|
@ -38,7 +38,9 @@ function startup.parse_args()
|
|||
if not opts then
|
||||
if err == "param-not-found" then
|
||||
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
|
||||
print("Expected a value to follow command-line option: "..where);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue