1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-02 19:56:10 +02:00
git/git-verify-tag.sh
freku045@student.liu.se 349701210d git-verify-tag: Usage string clean-up, emit usage string at incorrect invocation
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-12-14 02:53:43 -08:00

24 lines
434 B
Bash
Executable File

#!/bin/sh
USAGE='<tag>'
SUBDIRECTORY_OK='Yes'
. git-sh-setup
if [ "$#" != "1" ]
then
usage
fi
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" >"$GIT_DIR/.tmp-vtag" || exit 1
cat "$GIT_DIR/.tmp-vtag" |
sed '/-----BEGIN PGP/Q' |
gpg --verify "$GIT_DIR/.tmp-vtag" - || exit 1
rm -f "$GIT_DIR/.tmp-vtag"