Git development
 help / color / mirror / Atom feed
* [PATCH 1/2] Fix git-verify-tag for local tags
@ 2005-10-09 18:12 Paolo 'Blaisorblade' Giarrusso
  2005-10-09 18:12 ` [PATCH 2/2] git-verify-tag: detect wrong syntax Paolo 'Blaisorblade' Giarrusso
  2005-10-09 19:29 ` [PATCH 1/2] Fix git-verify-tag for local tags Junio C Hamano
  0 siblings, 2 replies; 3+ messages in thread
From: Paolo 'Blaisorblade' Giarrusso @ 2005-10-09 18:12 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

From: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>

It currently exits printing "git-cat-file SHA1: bad file", while instead we must
just abort the verification for local tags (i.e. referring to commit objects).

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
---

 git-verify-tag.sh |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/git-verify-tag.sh b/git-verify-tag.sh
--- a/git-verify-tag.sh
+++ b/git-verify-tag.sh
@@ -3,6 +3,10 @@
 
 tag=$(git-rev-parse $1) || exit 1
 
+type=$(git-cat-file -t $tag) || exit 1
+[ "$type" = "commit" ] && die "Light tag - verification impossible"
+[ "$type" = "tag" ] || die "Bad tag - SHA1 doesn't refer to a tag object nor to a commit one."
+
 git-cat-file tag $tag > .tmp-vtag || exit 1
 cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1
 rm -f .tmp-vtag

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-10-09 19:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-09 18:12 [PATCH 1/2] Fix git-verify-tag for local tags Paolo 'Blaisorblade' Giarrusso
2005-10-09 18:12 ` [PATCH 2/2] git-verify-tag: detect wrong syntax Paolo 'Blaisorblade' Giarrusso
2005-10-09 19:29 ` [PATCH 1/2] Fix git-verify-tag for local tags Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox