1
0
mirror of https://github.com/git/git.git synced 2024-09-30 09:01:24 +02:00
git/git-verify-tag-script

9 lines
232 B
Plaintext
Raw Normal View History

#!/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