Put in check to make sure the patch is rebased late enough 61/4061/1
authorEd Warnicke <eaw@cisco.com>
Thu, 1 Dec 2016 22:26:17 +0000 (16:26 -0600)
committerEd Warnicke <eaw@cisco.com>
Thu, 1 Dec 2016 22:26:17 +0000 (16:26 -0600)
Change-Id: Ia32ad82a3d8ee91282b26f70b4728e252e7453fd
Signed-off-by: Ed Warnicke <eaw@cisco.com>
jjb/vpp/include-raw-vpp-build.sh

index 55fadd0..2b56eb4 100644 (file)
@@ -34,6 +34,11 @@ sha1sum $0
 
 (git log --oneline | grep 30d41ff > /dev/null 2>&1);if [ $? != 0 ]; then REBASE_NEEDED="1";fi
 (git log --oneline | grep fb0815d > /dev/null 2>&1);if [ $? == 0 ]; then VPP_REPO="1";fi
+
+# Due to a shift to make verify, after 2016-12-01 we need to make sure any patches
+# coming in happen after 37682e1
+(git log --oneline | grep 37682e1 > /dev/null 2>&1);if [ $? != 0 ]; then REBASE_NEEDED="1";fi
+
 echo "REBASE_NEEDED: ${REBASE_NEEDED}"
 echo "VPP_REPO: ${VPP_REPO}"