aboutsummaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin')
-rwxr-xr-xsrc/bin/luarocks36
1 files changed, 19 insertions, 17 deletions
diff --git a/src/bin/luarocks b/src/bin/luarocks
index 6ab27fa3..e9cfc349 100755
--- a/src/bin/luarocks
+++ b/src/bin/luarocks
@@ -5,22 +5,24 @@ local command_line = require("luarocks.command_line")
5 5
6program_description = "LuaRocks main command-line interface" 6program_description = "LuaRocks main command-line interface"
7 7
8commands = {} 8commands = {
9commands.help = require("luarocks.help") 9 help = "luarocks.help",
10commands.pack = require("luarocks.pack") 10 pack = "luarocks.pack",
11commands.unpack = require("luarocks.unpack") 11 unpack = "luarocks.unpack",
12commands.build = require("luarocks.build") 12 build = "luarocks.build",
13commands.install = require("luarocks.install") 13 install = "luarocks.install",
14commands.search = require("luarocks.search") 14 search = "luarocks.search",
15commands.list = require("luarocks.list") 15 list = "luarocks.list",
16commands.remove = require("luarocks.remove") 16 remove = "luarocks.remove",
17commands.make = require("luarocks.make") 17 make = "luarocks.make",
18commands.download = require("luarocks.download") 18 download = "luarocks.download",
19commands.path = require("luarocks.path") 19 path = "luarocks.path",
20commands.show = require("luarocks.show") 20 show = "luarocks.show",
21commands.new_version = require("luarocks.new_version") 21 new_version = "luarocks.new_version",
22commands.lint = require("luarocks.lint") 22 lint = "luarocks.lint",
23commands.write_rockspec = require("luarocks.write_rockspec") 23 write_rockspec = "luarocks.write_rockspec",
24commands.purge = require("luarocks.purge") 24 purge = "luarocks.purge",
25 doc = "luarocks.doc",
26}
25 27
26command_line.run_command(...) 28command_line.run_command(...)