OSDN Git Service

git-revert: Fix die before git-sh-setup defines it.
authorBob Proulx <bob@proulx.com>
Fri, 12 Jan 2007 06:45:38 +0000 (23:45 -0700)
committerJunio C Hamano <junkio@cox.net>
Fri, 12 Jan 2007 08:13:34 +0000 (00:13 -0800)
The code previously checked it's own name and called 'die' upon
an error.  However 'die' was not yet defined because git-sh-setup
had not been sourced yet.  Instead simply write the error message
to stderr and exit with an error as was originally desired.

Signed-off-by: Bob Proulx <bob@proulx.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-revert.sh

index f9843c7..fcca3eb 100755 (executable)
@@ -16,7 +16,8 @@ case "$0" in
        me=cherry-pick
        USAGE='[--edit] [-n] [-r] [-x] <commit-ish>'  ;;
 * )
-       die "What are you talking about?" ;;
+       echo >&2 "What are you talking about?"
+       exit 1 ;;
 esac
 . git-sh-setup
 require_work_tree