d6e0eb87c3df97c978b2de37841fb5fba375a067
   1#!/bin/sh
   2
   3GIT_DIR=`git-rev-parse --git-dir` || exit $?
   4
   5type="$(git-cat-file -t "$1" 2>/dev/null)" ||
   6        die "$1: no such object."
   7
   8test "$type" = tag ||
   9        die "$1: cannot verify a non-tag object of type $type."
  10
  11git-cat-file tag "$1" >"$GIT_DIR/.tmp-vtag" || exit 1
  12cat "$GIT_DIR/.tmp-vtag" |
  13sed '/-----BEGIN PGP/Q' |
  14gpg --verify "$GIT_DIR/.tmp-vtag" - || exit 1
  15rm -f "$GIT_DIR/.tmp-vtag"
  16