From d165fa14f0a111dfc85d964ecc037d0b280cd54f Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 27 Nov 2005 23:33:54 -0800 Subject: define die() for scripts that use it. As a fallout from not using git-sh-setup in scripts that can operate from a subdirectory, we lost definition of die() from them. It might make sense to do some cleanup to consolidate them back again, but this should suffice for now. Signed-off-by: Junio C Hamano --- git-verify-tag.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'git-verify-tag.sh') diff --git a/git-verify-tag.sh b/git-verify-tag.sh index d6e0eb87c3..1f44da5349 100755 --- a/git-verify-tag.sh +++ b/git-verify-tag.sh @@ -2,6 +2,11 @@ GIT_DIR=`git-rev-parse --git-dir` || exit $? +die () { + echo >&2 "$*" + exit 1 +} + type="$(git-cat-file -t "$1" 2>/dev/null)" || die "$1: no such object." -- cgit v1.3-5-g9baa