diff options
Diffstat (limited to 'src/bin')
-rwxr-xr-x | src/bin/luarocks | 36 |
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 | ||
6 | program_description = "LuaRocks main command-line interface" | 6 | program_description = "LuaRocks main command-line interface" |
7 | 7 | ||
8 | commands = {} | 8 | commands = { |
9 | commands.help = require("luarocks.help") | 9 | help = "luarocks.help", |
10 | commands.pack = require("luarocks.pack") | 10 | pack = "luarocks.pack", |
11 | commands.unpack = require("luarocks.unpack") | 11 | unpack = "luarocks.unpack", |
12 | commands.build = require("luarocks.build") | 12 | build = "luarocks.build", |
13 | commands.install = require("luarocks.install") | 13 | install = "luarocks.install", |
14 | commands.search = require("luarocks.search") | 14 | search = "luarocks.search", |
15 | commands.list = require("luarocks.list") | 15 | list = "luarocks.list", |
16 | commands.remove = require("luarocks.remove") | 16 | remove = "luarocks.remove", |
17 | commands.make = require("luarocks.make") | 17 | make = "luarocks.make", |
18 | commands.download = require("luarocks.download") | 18 | download = "luarocks.download", |
19 | commands.path = require("luarocks.path") | 19 | path = "luarocks.path", |
20 | commands.show = require("luarocks.show") | 20 | show = "luarocks.show", |
21 | commands.new_version = require("luarocks.new_version") | 21 | new_version = "luarocks.new_version", |
22 | commands.lint = require("luarocks.lint") | 22 | lint = "luarocks.lint", |
23 | commands.write_rockspec = require("luarocks.write_rockspec") | 23 | write_rockspec = "luarocks.write_rockspec", |
24 | commands.purge = require("luarocks.purge") | 24 | purge = "luarocks.purge", |
25 | doc = "luarocks.doc", | ||
26 | } | ||
25 | 27 | ||
26 | command_line.run_command(...) | 28 | command_line.run_command(...) |