From 0c43c4d115494f89e5e970e903ad9a3c0f2aff2b Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Thu, 6 Nov 2014 00:15:27 +0000 Subject: [PATCH] check-patches.sh: Check for patches not yet forwarded and not Debian-specific svn path=/dists/sid/linux/; revision=22042 --- debian/bin/check-patches.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/bin/check-patches.sh b/debian/bin/check-patches.sh index 7f9047970..132c224c9 100755 --- a/debian/bin/check-patches.sh +++ b/debian/bin/check-patches.sh @@ -20,3 +20,7 @@ echo echo "Patches without Origin or Forwarded header" echo "==========================================" xargs egrep -L '^(Origin|Forwarded):' < $TMPDIR/used || test $? = 1 +echo +echo "Patches to be forwarded" +echo "=======================" +xargs egrep -l '^Forwarded: no' < $TMPDIR/used | grep -v ^debian/patches/debian/ || test $? = 1