From f73a7d9bca18884c7f882e90b5be650ab625a485 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Tue, 5 Jan 2016 13:16:16 +0300 Subject: Report unknown commands consistently Now both 'luarocks foo' and 'luarocks help foo' print 'Unknown command: foo'. --- src/luarocks/help.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/luarocks/help.lua b/src/luarocks/help.lua index 92458b2b..5a2681a3 100644 --- a/src/luarocks/help.lua +++ b/src/luarocks/help.lua @@ -111,7 +111,7 @@ function help.run(...) print_section("SEE ALSO") util.printout("","'"..program.." help' for general options and configuration.\n") else - return nil, "Unknown command '"..command.."'" + return nil, "Unknown command: "..command end end return true -- cgit v1.2.3-55-g6feb