aboutsummaryrefslogtreecommitdiff
path: root/src/bin/luarocks-admin
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2018-06-19 10:34:39 -0300
committerHisham Muhammad <hisham@gobolinux.org>2018-07-01 15:51:13 -0300
commita1d5c8ca857d455582efefe88037b82792734b9c (patch)
treeb6acff0b405fe182313f5c76729d8fc75d72023f /src/bin/luarocks-admin
parenta55f09fae00cb3c575f926eda4d76e81ff37b2ba (diff)
downloadluarocks-a1d5c8ca857d455582efefe88037b82792734b9c.tar.gz
luarocks-a1d5c8ca857d455582efefe88037b82792734b9c.tar.bz2
luarocks-a1d5c8ca857d455582efefe88037b82792734b9c.zip
cmd: rename luarocks.command_line to luarocks.cmd
Diffstat (limited to 'src/bin/luarocks-admin')
-rwxr-xr-xsrc/bin/luarocks-admin4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/luarocks-admin b/src/bin/luarocks-admin
index 5db24640..4521ac26 100755
--- a/src/bin/luarocks-admin
+++ b/src/bin/luarocks-admin
@@ -4,7 +4,7 @@
4local cfg = require("luarocks.core.cfg") 4local cfg = require("luarocks.core.cfg")
5 5
6local loader = require("luarocks.loader") 6local loader = require("luarocks.loader")
7local command_line = require("luarocks.command_line") 7local cmd = require("luarocks.cmd")
8 8
9program_description = "LuaRocks repository administration interface" 9program_description = "LuaRocks repository administration interface"
10 10
@@ -16,4 +16,4 @@ commands = {
16 refresh_cache = "luarocks.admin.cmd.refresh_cache", 16 refresh_cache = "luarocks.admin.cmd.refresh_cache",
17} 17}
18 18
19command_line.run_command(...) 19cmd.run_command(...)