diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2014-01-09 21:57:58 -0200 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2014-01-09 21:57:58 -0200 |
commit | fec24d3a9ef8650ace58d8c6c967405fadb2fd33 (patch) | |
tree | f801e7b7ee25ad48771344128a14bd9ae31c4338 /src | |
parent | cc232cb9a1b347e4145d8accf67e795aae21a55b (diff) | |
download | luarocks-fec24d3a9ef8650ace58d8c6c967405fadb2fd33.tar.gz luarocks-fec24d3a9ef8650ace58d8c6c967405fadb2fd33.tar.bz2 luarocks-fec24d3a9ef8650ace58d8c6c967405fadb2fd33.zip |
Add missing commit of luarocks-admin command changes
Diffstat (limited to 'src')
-rwxr-xr-x | src/bin/luarocks-admin | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/bin/luarocks-admin b/src/bin/luarocks-admin index 983dda87..e7f49c25 100755 --- a/src/bin/luarocks-admin +++ b/src/bin/luarocks-admin | |||
@@ -6,12 +6,11 @@ local command_line = require("luarocks.command_line") | |||
6 | program_description = "LuaRocks repository administration interface" | 6 | program_description = "LuaRocks repository administration interface" |
7 | 7 | ||
8 | commands = { | 8 | commands = { |
9 | help = "luarocks.help", | ||
10 | make_manifest = "luarocks.make_manifest", | ||
11 | add = "luarocks.add", | ||
12 | remove = "luarocks.admin_remove", | ||
13 | refresh_cache = "luarocks.refresh_cache", | ||
9 | } | 14 | } |
10 | 15 | ||
11 | commands.help = require("luarocks.help") | ||
12 | commands.make_manifest = require("luarocks.make_manifest") | ||
13 | commands.add = require("luarocks.add") | ||
14 | commands.remove = require("luarocks.admin_remove") | ||
15 | commands.refresh_cache = require("luarocks.refresh_cache") | ||
16 | |||
17 | command_line.run_command(...) | 16 | command_line.run_command(...) |