From 67f73b4a1a18a6ff9535ac4ed5faec0d1eb9671a Mon Sep 17 00:00:00 2001 From: Hisham Date: Sat, 29 Oct 2016 16:14:05 -0200 Subject: Move admin commands to luarocks.admin.cmd.*; fix references to modules. --- src/bin/luarocks-admin | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/bin/luarocks-admin') 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") program_description = "LuaRocks repository administration interface" commands = { - help = "luarocks.help", - make_manifest = "luarocks.admin.make_manifest", - add = "luarocks.admin.add", - remove = "luarocks.admin.remove", - refresh_cache = "luarocks.admin.refresh_cache", + help = "luarocks.cmd.help", + make_manifest = "luarocks.admin.cmd.make_manifest", + add = "luarocks.admin.cmd.add", + remove = "luarocks.admin.cmd.remove", + refresh_cache = "luarocks.admin.cmd.refresh_cache", } command_line.run_command(...) -- cgit v1.2.3-55-g6feb