From f6f3297244b43534dd7c8d3f06b8c09b5f2933bf Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Wed, 5 Nov 2014 23:42:08 +0000 Subject: [PATCH] check-patches.sh: Continue if fgrep has exit code of 1 svn path=/dists/sid/linux/; revision=22040 --- debian/bin/check-patches.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/bin/check-patches.sh b/debian/bin/check-patches.sh index 44542128e..7f9047970 100755 --- a/debian/bin/check-patches.sh +++ b/debian/bin/check-patches.sh @@ -15,7 +15,7 @@ echo echo "Patches without required headers" echo "================================" xargs egrep -l '^(Subject|Description):' < $TMPDIR/used | xargs egrep -l '^(From|Author|Origin):' > $TMPDIR/goodheaders || test $? = 1 -fgrep -v -f $TMPDIR/goodheaders $TMPDIR/used +fgrep -v -f $TMPDIR/goodheaders $TMPDIR/used || test $? = 1 echo echo "Patches without Origin or Forwarded header" echo "=========================================="