aboutsummaryrefslogtreecommitdiff
path: root/lfw/luarocks-admin.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lfw/luarocks-admin.lua')
-rw-r--r--lfw/luarocks-admin.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/lfw/luarocks-admin.lua b/lfw/luarocks-admin.lua
new file mode 100644
index 00000000..4f7a9a2f
--- /dev/null
+++ b/lfw/luarocks-admin.lua
@@ -0,0 +1,16 @@
1#!/usr/local/bin/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")
13commands.add = require("luarocks.add")
14commands.refresh_cache = require("luarocks.refresh_cache")
15
16command_line.run_command(...)