check-patches.sh: Continue if fgrep has exit code of 1

svn path=/dists/sid/linux/; revision=22040
This commit is contained in:
Ben Hutchings 2014-11-05 23:42:08 +00:00
parent 860af36782
commit f6f3297244
1 changed files with 1 additions and 1 deletions

View File

@ -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 "=========================================="