From: Amos Jeffries Date: Thu, 18 Dec 2014 14:35:39 +0000 (-0800) Subject: Maintenance: check release notes on packaging X-Git-Tag: SQUID_3_4_11~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=581b1d6f45d70be0f5e36234d35025ae2b9d17ef;p=thirdparty%2Fsquid.git Maintenance: check release notes on packaging --- diff --git a/mkrelease.sh b/mkrelease.sh index 7330c39cf1..6e3ebfe598 100755 --- a/mkrelease.sh +++ b/mkrelease.sh @@ -53,6 +53,11 @@ if [ ${name} != ${PACKAGE}-${VERSION} ]; then exit 1 fi RELEASE=`echo $VERSION | cut -d. -f1,2 | cut -d- -f1` +NOTES_VERSION=`grep "$VERSION" doc/release-notes/release-${RELEASE}.html` +if test "x$NOTES_VERSION" = "x"; then + echo "ERROR! Release Notes HTML version numbers do not match!" + exit 1 +fi ed -s configure.ac <