mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Corrected the help output of the install and remove commands
This commit is contained in:
parent
c20cc1a17b
commit
449256fa0c
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ local command = table.remove(arg, 1);
|
|||
|
||||
function commands.install(arg)
|
||||
if arg[1] == "--help" then
|
||||
show_usage([[make]], [[Installs a prosody/luarocks plugin]]);
|
||||
show_usage([[install]], [[Installs a prosody/luarocks plugin]]);
|
||||
return 1;
|
||||
end
|
||||
local installer_plugin_path = prosodyctl.get_path_custom_plugins(prosody.paths.plugins)
|
||||
|
@ -111,7 +111,7 @@ end
|
|||
|
||||
function commands.remove(arg)
|
||||
if arg[1] == "--help" then
|
||||
show_usage([[make]], [[Removes a module installed in the wroking directory's plugins folder]]);
|
||||
show_usage([[remove]], [[Removes a module installed in the wroking directory's plugins folder]]);
|
||||
return 1;
|
||||
end
|
||||
-- I'm considering that we are using just one path to custom plugins, and it is the first in prosody.paths.plugins, for now
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue