Software / code / prosody
Comparison
prosodyctl @ 11297:2e9d4c517919
prosodyctl: Fix copypaste oversight
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 21 Jan 2021 19:16:24 +0100 |
| parent | 11295:50ea7d9143ad |
| child | 11300:d0d64655e584 |
comparison
equal
deleted
inserted
replaced
| 11296:06bb0cdef50b | 11297:2e9d4c517919 |
|---|---|
| 85 show_warning("There is no 'plugin_server' option in the configuration file"); | 85 show_warning("There is no 'plugin_server' option in the configuration file"); |
| 86 -- see https://prosody.im/doc/TODO documentation | 86 -- see https://prosody.im/doc/TODO documentation |
| 87 return 1; | 87 return 1; |
| 88 end | 88 end |
| 89 local ret = call_luarocks("install", arg[1], server); | 89 local ret = call_luarocks("install", arg[1], server); |
| 90 if ret == 0 and operation == "install" then | 90 if ret == 0 then |
| 91 show_module_configuration_help(mod); | 91 prosodyctl.show_module_configuration_help(arg[1]); |
| 92 end | 92 end |
| 93 return ret; | 93 return ret; |
| 94 end | 94 end |
| 95 | 95 |
| 96 function commands.remove(arg) | 96 function commands.remove(arg) |