[Debian-in-commits] [SCM] debian-in.git branch, master, updated. e62ed93e7a14c38568380cbde608e1b33aa7b747

Vasudev Kamath kamathvasudev at gmail.com
Sat Nov 10 15:47:22 UTC 2012


The following commit has been merged in the master branch:
commit e62ed93e7a14c38568380cbde608e1b33aa7b747
Author: Vasudev Kamath <kamathvasudev at gmail.com>
Date:   Sat Nov 10 21:16:16 2012 +0530

    egrep regexpression is not sed regexp
    
    This was causing error in git-tag-pending-bugs thanks to dam and gregoa
    now this is fixed

diff --git a/attic/meta/debian-in-post-receive b/attic/meta/debian-in-post-receive
index a38bc72..846a89f 100755
--- a/attic/meta/debian-in-post-receive
+++ b/attic/meta/debian-in-post-receive
@@ -20,7 +20,7 @@ fi
 cat hooks/reflog | grep -v /tags/ |
     while read old new; do
         rev_spec="$old..$new"
-        if echo $old | egrep -q '^0\+$' ; then
+        if echo $old | egrep -q '^0+$' ; then
             rev_spec=$new
         fi
         for r in `git rev-list $rev_spec`; do

-- 
debian-in.git



More information about the Debian-in-commits mailing list