mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Added the 'make' function
This commit is contained in:
parent
db90fc5da5
commit
8fa4d6e250
1 changed files with 11 additions and 0 deletions
11
prosodyctl
11
prosodyctl
|
@ -129,6 +129,17 @@ function commands.write_rockspec(arg)
|
|||
return 0
|
||||
end
|
||||
|
||||
-- Command to install a rockspec with local sources
|
||||
-- The module is installed at the plugins folder
|
||||
function commands.make(arg)
|
||||
if arg[1] == "--help" then
|
||||
show_usage([[make]], [[Installs a module with sources available locally]]);
|
||||
return 1
|
||||
end
|
||||
os.execute("cd downloaded_modules/"..arg[1].." && luarocks --tree='../../plugins' make "..arg[1].."-scm-1.rockspec")
|
||||
return 0
|
||||
end
|
||||
|
||||
function commands.list(arg)
|
||||
if not arg[1] or arg[1] == "--help" then
|
||||
show_usage([[list]], [[Shows installed rocks]]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue