diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-07-19 12:51:59 -0400 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-07-19 12:51:59 -0400 |
commit | 66ee87d5d0545b78463e1dc5d764353c98dae6f8 (patch) | |
tree | ae9612c5f5677cffbff483c73a7c58e9316da1a2 | |
parent | 4438e17adda7347092546bede4685f19b12ee258 (diff) | |
download | prosody-66ee87d5d0545b78463e1dc5d764353c98dae6f8.tar.gz prosody-66ee87d5d0545b78463e1dc5d764353c98dae6f8.zip |
prosodyctl: Fix 'about' command to not show up where it shouldn't...
-rwxr-xr-x | prosodyctl | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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"; |