summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorPaul Ouellette <oue.paul18@gmail.com>2019-06-19 12:30:17 -0400
committerPaul Ouellette <oue.paul18@gmail.com>2019-08-01 23:53:03 -0400
commit3cf0c501f2ab62a73f25c6b244b8b019d4b1a36a (patch)
treef6fc2687fcce222f71601c31db15dc29df71b2d3 /src/bin
parent0823c4dd62e15515ad1e77cd20681b720485c564 (diff)
downloadluarocks-3cf0c501f2ab62a73f25c6b244b8b019d4b1a36a.tar.gz
luarocks-3cf0c501f2ab62a73f25c6b244b8b019d4b1a36a.tar.bz2
luarocks-3cf0c501f2ab62a73f25c6b244b8b019d4b1a36a.zip
Remove program_name cmd.run_command argument
Diffstat (limited to 'src/bin')
-rwxr-xr-xsrc/bin/luarocks2
-rwxr-xr-xsrc/bin/luarocks-admin2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/luarocks b/src/bin/luarocks
index 18c8fac6..56caaa60 100755
--- a/src/bin/luarocks
+++ b/src/bin/luarocks
@@ -32,4 +32,4 @@ local commands = {
32 test = "luarocks.cmd.test", 32 test = "luarocks.cmd.test",
33} 33}
34 34
35cmd.run_command("luarocks", description, commands, "luarocks.cmd.external", ...) 35cmd.run_command(description, commands, "luarocks.cmd.external", ...)
diff --git a/src/bin/luarocks-admin b/src/bin/luarocks-admin
index db746bea..4a85e45b 100755
--- a/src/bin/luarocks-admin
+++ b/src/bin/luarocks-admin
@@ -15,4 +15,4 @@ local commands = {
15 refresh_cache = "luarocks.admin.cmd.refresh_cache", 15 refresh_cache = "luarocks.admin.cmd.refresh_cache",
16} 16}
17 17
18cmd.run_command("luarocks-admin", description, commands, "luarocks.admin.cmd.external", ...) 18cmd.run_command(description, commands, "luarocks.admin.cmd.external", ...)