[Piuparts-commits] [SCM] piatti.debian.org configuration files branch, master, updated. 148332ef45997ba3aaf38cc2c9a28441083bad49
Andreas Beckmann
debian at abeckmann.de
Fri Dec 23 10:24:18 UTC 2011
The following commit has been merged in the master 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