mirror of
https://github.com/git/git.git
synced 2024-11-06 09:13:01 +01:00
ae2b0f1518
Now all the users of this script detect its exit status and die, complaining that it is outside git repository. So move the code that dies from all callers to git-sh-setup script. Signed-off-by: Junio C Hamano <junkio@cox.net>
12 lines
317 B
Bash
Executable file
12 lines
317 B
Bash
Executable file
#!/bin/sh
|
|
. git-sh-setup
|
|
|
|
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" > .tmp-vtag || exit 1
|
|
cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1
|
|
rm -f .tmp-vtag
|