mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
prosodyctl: Improved the 'list' command
This commit is contained in:
parent
344f333e82
commit
184b2a45b8
1 changed files with 3 additions and 3 deletions
|
@ -164,7 +164,7 @@ function commands.install(arg)
|
||||||
end
|
end
|
||||||
|
|
||||||
function commands.list(arg)
|
function commands.list(arg)
|
||||||
if not arg[1] or arg[1] == "--help" then
|
if arg[1] == "--help" then
|
||||||
show_usage([[list]], [[Shows installed rocks]]);
|
show_usage([[list]], [[Shows installed rocks]]);
|
||||||
return 1;
|
return 1;
|
||||||
end
|
end
|
||||||
|
@ -174,10 +174,10 @@ function commands.list(arg)
|
||||||
if arg[1] and arg[1]:sub(1, #flag) == flag then
|
if arg[1] and arg[1]:sub(1, #flag) == flag then
|
||||||
local dir = arg[1]:match("=(.+)$")
|
local dir = arg[1]:match("=(.+)$")
|
||||||
-- These extra double brackets allow us to correctly process names with spaces
|
-- These extra double brackets allow us to correctly process names with spaces
|
||||||
os.execute("luarocks list --tree=".."'"..dir.."'")
|
os.execute("luarocks list --tree='"..dir.."'")
|
||||||
return 0;
|
return 0;
|
||||||
else
|
else
|
||||||
os.execute("luarocks list --tree="..prosody.paths.data.."/rocks")
|
os.execute("luarocks list --tree="..prosody.paths.plugins)
|
||||||
return 0;
|
return 0;
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue