From 3cf0c501f2ab62a73f25c6b244b8b019d4b1a36a Mon Sep 17 00:00:00 2001 From: Paul Ouellette Date: Wed, 19 Jun 2019 12:30:17 -0400 Subject: Remove program_name cmd.run_command argument --- src/bin/luarocks | 2 +- src/bin/luarocks-admin | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/bin') 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 = { test = "luarocks.cmd.test", } -cmd.run_command("luarocks", description, commands, "luarocks.cmd.external", ...) +cmd.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 = { refresh_cache = "luarocks.admin.cmd.refresh_cache", } -cmd.run_command("luarocks-admin", description, commands, "luarocks.admin.cmd.external", ...) +cmd.run_command(description, commands, "luarocks.admin.cmd.external", ...) -- cgit v1.2.3-55-g6feb