[Piuparts-commits] [SCM] piatti.debian.org configuration files branch, develop, updated. bd576b4d2a7b962aad4245414b3a858dec5e52c6

Andreas Beckmann debian at abeckmann.de
Fri Dec 2 13:15:00 UTC 2011


The following commit has been merged in the develop branch:
commit c3237dd33f1a7ba1ad3fdb7d66151d1d1e31b7f5
Author: Andreas Beckmann <debian at abeckmann.de>
Date:   Tue Nov 29 08:07:27 2011 +0100

    fix grep call with extended regexp
    
    extended regular expression (e.g. something with round brackets)
    needs grep -E
    
    Signed-off-by: Andreas Beckmann <debian at abeckmann.de>

diff --git a/home/piupartsm/bin/detect_archive_issues b/home/piupartsm/bin/detect_archive_issues
index dc9adcb..884baef 100755
--- a/home/piupartsm/bin/detect_archive_issues
+++ b/home/piupartsm/bin/detect_archive_issues
@@ -36,7 +36,7 @@ fi
 
 LOGS=`mktemp`
 for SECTION in $SECTIONS ; do 
-	rgrep -l -e "(E: Broken packages|E: Error, pkgProblemResolver::Resolve generated breaks)" $MASTER/$SECTION/fail 2>/dev/null >> $LOGS
+	rgrep -l -E "(E: Broken packages|E: Error, pkgProblemResolver::Resolve generated breaks)" $MASTER/$SECTION/fail 2>/dev/null >> $LOGS
         if [ -s $LOGS ] ; then 
           for package_log in $(grep $SECTION $LOGS) ; do 
 		mv $package_log $MASTER/$SECTION/untestable/

-- 
piatti.debian.org configuration files



More information about the Piuparts-commits mailing list