Revision aa9dc7afd2fc40466b430b35fc5c82d3c820cb26 authored by Junio C Hamano on 13 December 2005, 07:38:47 UTC, committed by Junio C Hamano on 14 December 2005, 10:53:43 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent d025524
Raw File
git-verify-tag.sh
#!/bin/sh

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."

test "$type" = tag ||
	die "$1: cannot verify a non-tag object of type $type."

git-cat-file tag "$1" >"$GIT_DIR/.tmp-vtag" || exit 1
cat "$GIT_DIR/.tmp-vtag" |
sed '/-----BEGIN PGP/Q' |
gpg --verify "$GIT_DIR/.tmp-vtag" - || exit 1
rm -f "$GIT_DIR/.tmp-vtag"

back to top