From: Amos Jeffries Date: Tue, 9 Dec 2014 16:40:40 +0000 (-0800) Subject: Maintenance: check release notes on packaging X-Git-Tag: merge-candidate-3-v1~442 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d88bcf6b1caa8e6f38fbb24efccc707a16ac36ab;p=thirdparty%2Fsquid.git Maintenance: check release notes on packaging --- diff --git a/mkrelease.sh b/mkrelease.sh index af788c6cf8..67291e6429 100755 --- a/mkrelease.sh +++ b/mkrelease.sh @@ -61,6 +61,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 Notse HTML version numbers do not match!" + exit 1 +fi ed -s configure.ac <