aboutsummaryrefslogtreecommitdiff
path: root/src/bin/luarocks-admin
blob: c35e8b9327f42b6dc805728eab5be38d45a90cbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env lua

local command_line = require("luarocks.command_line")

program_name = "luarocks-admin"
program_description = "LuaRocks repository administration interface"

commands = {
}

commands.help = require("luarocks.help")
commands.make_manifest = require("luarocks.make_manifest")
commands.add = require("luarocks.add")

command_line.run_command(...)