From: Matthew Wild Date: Tue, 19 Jul 2011 16:51:59 +0000 (-0400) Subject: prosodyctl: Fix 'about' command to not show up where it shouldn't... X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=4bb95ec0969311768be5c6da51ea80a31286f4d3;p=prosody.git prosodyctl: Fix 'about' command to not show up where it shouldn't... --- diff --git a/prosodyctl b/prosodyctl index c468eb7d..a9858c44 100755 --- a/prosodyctl +++ b/prosodyctl @@ -486,6 +486,11 @@ function commands.restart(arg) end function commands.about(arg) + if arg[1] == "--help" then + show_usage([[about]], [[Show information about this Prosody installation]]); + return 1; + end + require "util.array"; require "util.iterators";