mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Move message after condition
If the condition is false, the message becomes a lie!
This commit is contained in:
parent
57a971534d
commit
d35c2451b8
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,6 @@ function commands.install(arg)
|
|||
show_usage([[install]], [[Installs a prosody/luarocks plugin]]);
|
||||
return 1;
|
||||
end
|
||||
show_message("Installing %s in %s", arg[1], prosody.paths.installer);
|
||||
-- TODO finalize config option name
|
||||
local server = configmanager.get("*", "plugin_server");
|
||||
if not server then
|
||||
|
@ -86,6 +85,7 @@ function commands.install(arg)
|
|||
-- see https://prosody.im/doc/TODO documentation
|
||||
return 1;
|
||||
end
|
||||
show_message("Installing %s in %s", arg[1], prosody.paths.installer);
|
||||
local ret = call_luarocks("install", arg[1], server);
|
||||
if ret == 0 then
|
||||
prosodyctl.show_module_configuration_help(arg[1]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue