aboutsummaryrefslogtreecommitdiff
path: root/src/bin/luarocks-admin
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/luarocks-admin')
-rwxr-xr-xsrc/bin/luarocks-admin14
1 files changed, 14 insertions, 0 deletions
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(...)