aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-01-21 19:16:24 +0100
committerKim Alvefur <zash@zash.se>2021-01-21 19:16:24 +0100
commitf33c04b487373b6158556a4f80f67da19f209cc5 (patch)
tree6a8333087cb06fb8af0523ab372bda41d156ee41
parent4b22be76515f10dc1dbc0e890d181b2367436f03 (diff)
downloadprosody-f33c04b487373b6158556a4f80f67da19f209cc5.tar.gz
prosody-f33c04b487373b6158556a4f80f67da19f209cc5.zip
prosodyctl: Fix copypaste oversight
-rwxr-xr-xprosodyctl4
1 files changed, 2 insertions, 2 deletions
diff --git a/prosodyctl b/prosodyctl
index 37116491..def0b7e2 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -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