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:
Kim Alvefur 2022-02-17 01:39:35 +01:00
parent 89c2a5ac30
commit ebcb37baa4

View file

@ -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