aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorJoão Duarte <jvsDuarte08@gmail.com>2019-07-16 10:08:12 -0700
committerJoão Duarte <jvsDuarte08@gmail.com>2019-07-16 10:08:12 -0700
commitdb90fc5da5288330ba1780d387ab7bdafc3210ff (patch)
treee85b66fc48c0fe824ebf321de8ffef7da5fd76b2 /prosodyctl
parent7c291a6e154b0325ca4173995810f7b0831f7480 (diff)
downloadprosody-db90fc5da5288330ba1780d387ab7bdafc3210ff.tar.gz
prosody-db90fc5da5288330ba1780d387ab7bdafc3210ff.zip
prosodyctl: Added the 'write_rockspec' function
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl16
1 files changed, 16 insertions, 0 deletions
diff --git a/prosodyctl b/prosodyctl
index 0bde4478..baea969a 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -113,6 +113,22 @@ function commands.get_modules(arg)
end
end
+-- Function to write rockspecs from a module at working_directory/downloaded_modules
+-- Receives the module's name as an argument
+-- The rockspec is saved inside its module's folder
+function commands.write_rockspec(arg)
+ if arg[1] == "--help" then
+ show_usage([[write_rockspec]], [[Picks up a module and writes an initial rockspec]]);
+ return 1
+ end
+ print("Writing rockspec for "..arg[1])
+ os.execute("luarocks write_rockspec "..arg[1].." ./downloaded_modules/"..arg[1])
+ print("Rockspec created! Moving it into the ./downloaded_modules/"..arg[1].." folder")
+ os.execute("mv "..arg[1].."-scm-1.rockspec ./downloaded_modules/"..arg[1])
+ print("Done!")
+ return 0
+end
+
function commands.list(arg)
if not arg[1] or arg[1] == "--help" then
show_usage([[list]], [[Shows installed rocks]]);