aboutsummaryrefslogtreecommitdiff
path: root/src/bin/luarocks-admin
diff options
context:
space:
mode:
authorHisham <hisham@gobolinux.org>2016-10-29 16:14:05 -0200
committerHisham <hisham@gobolinux.org>2016-10-29 16:14:05 -0200
commit67f73b4a1a18a6ff9535ac4ed5faec0d1eb9671a (patch)
treeb28b633631c411d198e6393f54cb4d3622a6ee22 /src/bin/luarocks-admin
parentdb7814136e3ce45141d3582738dc36ad3596df2c (diff)
downloadluarocks-67f73b4a1a18a6ff9535ac4ed5faec0d1eb9671a.tar.gz
luarocks-67f73b4a1a18a6ff9535ac4ed5faec0d1eb9671a.tar.bz2
luarocks-67f73b4a1a18a6ff9535ac4ed5faec0d1eb9671a.zip
Move admin commands to luarocks.admin.cmd.*; fix references to modules.
Diffstat (limited to 'src/bin/luarocks-admin')
-rwxr-xr-xsrc/bin/luarocks-admin10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bin/luarocks-admin b/src/bin/luarocks-admin
index 660c0a70..5db24640 100755
--- a/src/bin/luarocks-admin
+++ b/src/bin/luarocks-admin
@@ -9,11 +9,11 @@ local command_line = require("luarocks.command_line")
9program_description = "LuaRocks repository administration interface" 9program_description = "LuaRocks repository administration interface"
10 10
11commands = { 11commands = {
12 help = "luarocks.help", 12 help = "luarocks.cmd.help",
13 make_manifest = "luarocks.admin.make_manifest", 13 make_manifest = "luarocks.admin.cmd.make_manifest",
14 add = "luarocks.admin.add", 14 add = "luarocks.admin.cmd.add",
15 remove = "luarocks.admin.remove", 15 remove = "luarocks.admin.cmd.remove",
16 refresh_cache = "luarocks.admin.refresh_cache", 16 refresh_cache = "luarocks.admin.cmd.refresh_cache",
17} 17}
18 18
19command_line.run_command(...) 19command_line.run_command(...)