aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2014-01-09 21:57:58 -0200
committerHisham Muhammad <hisham@gobolinux.org>2014-01-09 21:57:58 -0200
commitfec24d3a9ef8650ace58d8c6c967405fadb2fd33 (patch)
treef801e7b7ee25ad48771344128a14bd9ae31c4338 /src
parentcc232cb9a1b347e4145d8accf67e795aae21a55b (diff)
downloadluarocks-fec24d3a9ef8650ace58d8c6c967405fadb2fd33.tar.gz
luarocks-fec24d3a9ef8650ace58d8c6c967405fadb2fd33.tar.bz2
luarocks-fec24d3a9ef8650ace58d8c6c967405fadb2fd33.zip
Add missing commit of luarocks-admin command changes
Diffstat (limited to 'src')
-rwxr-xr-xsrc/bin/luarocks-admin11
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")
6program_description = "LuaRocks repository administration interface" 6program_description = "LuaRocks repository administration interface"
7 7
8commands = { 8commands = {
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
11commands.help = require("luarocks.help")
12commands.make_manifest = require("luarocks.make_manifest")
13commands.add = require("luarocks.add")
14commands.remove = require("luarocks.admin_remove")
15commands.refresh_cache = require("luarocks.refresh_cache")
16
17command_line.run_command(...) 16command_line.run_command(...)