* [PATCH 6/9] Cleanup: git-verify-tag-script
@ 2005-07-23 0:29 Junio C Hamano
0 siblings, 0 replies; only message in thread
From: Junio C Hamano @ 2005-07-23 0:29 UTC (permalink / raw)
To: Linus Torvalds; +Cc: git
From: Eric W. Biederman <ebiederm@xmission.com>
Date: 1121545120 -0600
- Use git-rev-parse to allow sha1 tags references
- When the tag does not verify set an appropriate exit status
- Use git-sh-setup-script to verify the .git directory
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
---
git-verify-tag-script | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
c83d38d1dc23f205bb8758fe695b0b4b47601b2e
diff --git a/git-verify-tag-script b/git-verify-tag-script
--- a/git-verify-tag-script
+++ b/git-verify-tag-script
@@ -1,9 +1,8 @@
#!/bin/sh
-GIT_DIR=${GIT_DIR:-.git}
+. git-sh-setup-script || die "Not a git archive"
-tag=$1
-[ -f "$GIT_DIR/refs/tags/$tag" ] && tag=$(cat "$GIT_DIR/refs/tags/$tag")
+tag=$(git-rev-parse $1) || exit 1
git-cat-file tag $tag > .tmp-vtag || exit 1
-cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag -
+cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1
rm -f .tmp-vtag
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-07-23 0:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-23 0:29 [PATCH 6/9] Cleanup: git-verify-tag-script 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;
as well as URLs for NNTP newsgroup(s).