1#!/bin/sh 2. git-sh-setup-script || die "Not a git archive" 3 4tag=$(git-rev-parse $1) || exit 1 5 6git-cat-file tag $tag > .tmp-vtag || exit 1 7cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1 8rm -f .tmp-vtag
#!/bin/sh
. git-sh-setup-script || die "Not a git archive"
tag=$(git-rev-parse $1) || exit 1
git-cat-file tag $tag > .tmp-vtag || exit 1
cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1
rm -f .tmp-vtag