diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-21 19:16:24 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-21 19:16:24 +0100 |
commit | f33c04b487373b6158556a4f80f67da19f209cc5 (patch) | |
tree | 6a8333087cb06fb8af0523ab372bda41d156ee41 | |
parent | 4b22be76515f10dc1dbc0e890d181b2367436f03 (diff) | |
download | prosody-f33c04b487373b6158556a4f80f67da19f209cc5.tar.gz prosody-f33c04b487373b6158556a4f80f67da19f209cc5.zip |
prosodyctl: Fix copypaste oversight
-rwxr-xr-x | prosodyctl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -87,8 +87,8 @@ function commands.install(arg) 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 |