From 32fa83bd84891c6dbba65e971e366d0535642009 Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Sat, 19 Oct 2013 17:56:22 -0400 Subject: [PATCH] guilt: fix -h invocation We need to invoke the help subcommand, instead of trying to find an executable with "guilt help" as the file name. Signed-off-by: Josef 'Jeff' Sipek --- guilt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guilt b/guilt index 2a0b3c0..8701481 100755 --- a/guilt +++ b/guilt @@ -13,7 +13,7 @@ GUILT="$(basename "$0")" case $1 in -h|--h|--he|--hel|--help) shift - exec "guilt help" "$GUILT" + exec guilt help "$@" exit ;; -V|--ver|--versi|--versio|--version) -- 2.11.4.GIT