# HG changeset patch # User Kim Alvefur # Date 1611252984 -3600 # Node ID 2e9d4c51791970dae74d235eb9458d19e46edf48 # Parent 06bb0cdef50b6cb2133a4334cc935c3829c34b66 prosodyctl: Fix copypaste oversight diff -r 06bb0cdef50b -r 2e9d4c517919 prosodyctl --- a/prosodyctl Thu Jan 21 19:15:28 2021 +0100 +++ b/prosodyctl Thu Jan 21 19:16:24 2021 +0100 @@ -87,8 +87,8 @@ return 1; end local ret = call_luarocks("install", arg[1], server); - if ret == 0 and operation == "install" then - show_module_configuration_help(mod); + if ret == 0 then + prosodyctl.show_module_configuration_help(arg[1]); end return ret; end