mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl: Flip argument order
"verb subject" feels better than "subject verb", especially since the subject (module) is optional.
This commit is contained in:
parent
3c0445e1b2
commit
b74859e35c
2 changed files with 4 additions and 4 deletions
|
@ -78,7 +78,7 @@ function commands.install(arg)
|
|||
show_usage([[install]], [[Installs a prosody/luarocks plugin]]);
|
||||
return 1;
|
||||
end
|
||||
call_luarocks(arg[1], "install")
|
||||
call_luarocks("install", arg[1]);
|
||||
end
|
||||
|
||||
function commands.remove(arg)
|
||||
|
@ -86,7 +86,7 @@ function commands.remove(arg)
|
|||
show_usage([[remove]], [[Removes a module installed in the working directory's plugins folder]]);
|
||||
return 1;
|
||||
end
|
||||
call_luarocks(arg[1], "remove")
|
||||
call_luarocks("remove", arg[1])
|
||||
end
|
||||
|
||||
function commands.list(arg)
|
||||
|
@ -94,7 +94,7 @@ function commands.list(arg)
|
|||
show_usage([[list]], [[Shows installed rocks]]);
|
||||
return 1;
|
||||
end
|
||||
call_luarocks(arg[1], "list")
|
||||
call_luarocks("list", arg[1])
|
||||
end
|
||||
|
||||
function commands.adduser(arg)
|
||||
|
|
|
@ -227,7 +227,7 @@ end
|
|||
|
||||
local render_cli = interpolation.new("%b{}", function (s) return "'"..s:gsub("'","'\\''").."'" end)
|
||||
|
||||
local function call_luarocks(mod, operation)
|
||||
local function call_luarocks(operation, mod)
|
||||
local dir = get_path_custom_plugins(prosody.paths.plugins);
|
||||
if operation == "install" then
|
||||
show_message("Installing %s at %s", mod, dir);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue