mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Restore 'list --outdated'
Parsing --flags puts it into 'opts', so --outdated wasn't passed to luarocks, breaking that functionality
This commit is contained in:
parent
89c2a5ac30
commit
ebcb37baa4
1 changed files with 4 additions and 0 deletions
|
@ -115,6 +115,10 @@ function commands.list(arg)
|
|||
show_usage([[list]], [[Shows installed rocks]]);
|
||||
return 0;
|
||||
end
|
||||
if opts.outdated then
|
||||
-- put this back for luarocks
|
||||
arg[1] = "--outdated";
|
||||
end
|
||||
local ret = call_luarocks("list", arg[1]);
|
||||
return ret;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue