[Xfce4-commits] <xfce-git-hooks:master> don't check author name/email on tag creation

Brian J. Tarricone noreply at xfce.org
Sat Oct 10 03:08:01 CEST 2009


Updating branch refs/heads/master
         to d68f786a8e478382ff910376aa4b7ab2a3daf344 (commit)
       from 24ec140c21d6734ad80298f7253fa6781d8e5e31 (commit)

commit d68f786a8e478382ff910376aa4b7ab2a3daf344
Author: Brian J. Tarricone <brian at tarricone.org>
Date:   Fri Oct 9 18:06:40 2009 -0700

    don't check author name/email on tag creation

 hooks/update-01-history-integrity |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/hooks/update-01-history-integrity b/hooks/update-01-history-integrity
index 7456816..8549c35 100755
--- a/hooks/update-01-history-integrity
+++ b/hooks/update-01-history-integrity
@@ -134,6 +134,8 @@ case $refname in
     ;;
 esac
 
-committer_info_ok_range $oldrev $newrev || exit 1
+if [ "${refname:0:10}" != "refs/tags/" ]; then
+    committer_info_ok_range $oldrev $newrev || exit 1
+fi
 
 exit 0



More information about the Xfce4-commits mailing list