aboutsummaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorhisham <hisham@9ca3f7c1-7366-0410-b1a3-b5c78f85698c>2009-04-01 17:11:57 +0000
committerhisham <hisham@9ca3f7c1-7366-0410-b1a3-b5c78f85698c>2009-04-01 17:11:57 +0000
commita88d6f2eeba2b3355c33fac6d736cf6086342f47 (patch)
tree03ebfa0ced0186e091609cf337e290580fab8c11 /src/bin
downloadluarocks-a88d6f2eeba2b3355c33fac6d736cf6086342f47.tar.gz
luarocks-a88d6f2eeba2b3355c33fac6d736cf6086342f47.tar.bz2
luarocks-a88d6f2eeba2b3355c33fac6d736cf6086342f47.zip
Import latest revision from CVS at luaforge.netv1.0v0.5.2v0.5.1v0.5v0.4.3v0.4.2v0.4.1v0.4v0.3.2v0.3.1v0.3v0.2v0.1
git-svn-id: http://luarocks.org/svn/luarocks/trunk@1 9ca3f7c1-7366-0410-b1a3-b5c78f85698c
Diffstat (limited to 'src/bin')
-rwxr-xr-xsrc/bin/luarocks19
-rwxr-xr-xsrc/bin/luarocks-admin14
2 files changed, 33 insertions, 0 deletions
diff --git a/src/bin/luarocks b/src/bin/luarocks
new file mode 100755
index 00000000..8812ecc8
--- /dev/null
+++ b/src/bin/luarocks
@@ -0,0 +1,19 @@
1#!/usr/bin/env lua
2
3local command_line = require("luarocks.command_line")
4
5program_name = "luarocks"
6program_description = "LuaRocks main command-line interface"
7
8commands = {}
9commands.help = require("luarocks.help")
10commands.pack = require("luarocks.pack")
11commands.unpack = require("luarocks.unpack")
12commands.build = require("luarocks.build")
13commands.install = require("luarocks.install")
14commands.search = require("luarocks.search")
15commands.list = require("luarocks.list")
16commands.remove = require("luarocks.remove")
17commands.make = require("luarocks.make")
18
19command_line.run_command(...)
diff --git a/src/bin/luarocks-admin b/src/bin/luarocks-admin
new file mode 100755
index 00000000..826597f6
--- /dev/null
+++ b/src/bin/luarocks-admin
@@ -0,0 +1,14 @@
1#!/usr/bin/env lua
2
3local command_line = require("luarocks.command_line")
4
5program_name = "luarocks-admin"
6program_description = "LuaRocks repository administration interface"
7
8commands = {
9}
10
11commands.help = require("luarocks.help")
12commands.make_manifest = require("luarocks.make_manifest")
13
14command_line.run_command(...)