From 0b33cd59fc785d808b1ef55beaf0c852aa00f0e3 Mon Sep 17 00:00:00 2001 From: Peter Melnichenko Date: Sat, 18 Aug 2018 11:31:29 +0300 Subject: [PATCH] More description error when no programs are specified --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index df6ba0e..253ee63 100755 --- a/hererocks.py +++ b/hererocks.py @@ -2075,7 +2075,7 @@ def main(argv=None): global opts opts = parser.parse_args(argv) if not opts.lua and not opts.luajit and not opts.luarocks and not opts.show: - parser.error("nothing to do") + parser.error("a version of Lua, LuaJIT, or LuaRocks needs to be specified unless --show is used") if opts.lua and opts.luajit: parser.error("can't install both PUC-Rio Lua and LuaJIT")