[PATCH] Remove the explicit Makefile dependencies description
[git/dscho.git] / git-verify-tag-script
blob6eb650be7a2c0449b3d6bad0a457b085db4cbe09
1 #!/bin/sh
2 . git-sh-setup-script || die "Not a git archive"
4 tag=$(git-rev-parse $1) || exit 1
6 git-cat-file tag $tag > .tmp-vtag || exit 1
7 cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1
8 rm -f .tmp-vtag