Junio C Hamano
19 years ago
7 changed files with 23 additions and 10 deletions
@ -1,8 +1,12 @@
@@ -1,8 +1,12 @@
|
||||
#!/bin/sh |
||||
. git-sh-setup || die "Not a git archive" |
||||
|
||||
tag=$(git-rev-parse $1) || exit 1 |
||||
type="$(git-cat-file -t "$1" 2>/dev/null)" || |
||||
die "$1: no such object." |
||||
|
||||
git-cat-file tag $tag > .tmp-vtag || exit 1 |
||||
test "$type" = tag || |
||||
die "$1: cannot verify a non-tag object of type $type." |
||||
|
||||
git-cat-file tag "$1" > .tmp-vtag || exit 1 |
||||
cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1 |
||||
rm -f .tmp-vtag |
||||
|
Loading…
Reference in new issue