mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
prosodyctl: The 'install' command can now recognize the flag '--tree'
This commit is contained in:
parent
184b2a45b8
commit
213539ccd9
1 changed files with 14 additions and 3 deletions
17
prosodyctl
17
prosodyctl
|
@ -158,9 +158,20 @@ function commands.install(arg)
|
||||||
show_usage([[make]], [[Installs a rockspec/rock from a specified server]]);
|
show_usage([[make]], [[Installs a rockspec/rock from a specified server]]);
|
||||||
return 1
|
return 1
|
||||||
end
|
end
|
||||||
print("Installing module "..arg[1].." locally, from luarocks repo")
|
-- Need to think about the case with many flags
|
||||||
os.execute("luarocks --tree='./plugins' install "..arg[1])
|
local flag = "--tree="
|
||||||
return 0
|
-- I'm considering the flag is the first, but there can be many flags
|
||||||
|
if arg[1] and arg[1]:sub(1, #flag) == flag then
|
||||||
|
local dir = arg[1]:match("=(.+)$")
|
||||||
|
print("Installing module "..arg[2].." at "..dir..", from luarocks repo")
|
||||||
|
-- These extra double brackets allow us to correctly process names with spaces
|
||||||
|
os.execute("luarocks install --tree='"..dir.."' "..arg[2])
|
||||||
|
return 0;
|
||||||
|
else
|
||||||
|
print("Installing module "..arg[1].." locally, from luarocks repo")
|
||||||
|
os.execute("luarocks --tree='"..prosody.paths.plugins.."' install "..arg[1])
|
||||||
|
return 0
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function commands.list(arg)
|
function commands.list(arg)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue