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

local command_line = require("luarocks.command_line")

program_description = "LuaRocks repository administration interface"

commands = {
}

commands.help = require("luarocks.help")
commands.make_manifest = require("luarocks.make_manifest")
commands.add = require("luarocks.add")
commands.remove = require("luarocks.admin_remove")
commands.refresh_cache = require("luarocks.refresh_cache")

command_line.run_command(...)