From: Michael R Sweet Date: Wed, 1 Nov 2017 14:59:53 +0000 (-0400) Subject: Need to look further down in CHANGES.md, fix messages to use .md suffix. X-Git-Tag: v2.2.7~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18a1649286d8978552c6334934a23dc6efe5fc0d;p=thirdparty%2Fcups.git Need to look further down in CHANGES.md, fix messages to use .md suffix. --- diff --git a/tools/makesrcdist b/tools/makesrcdist index 1c76355626..7ce1e589d7 100755 --- a/tools/makesrcdist +++ b/tools/makesrcdist @@ -61,19 +61,19 @@ else temp=`head -1 README.md | awk '{print $4}'` if test "$temp" != "v$version"; then - echo "Still need to update version to v$version in README.txt (saw $temp)" + echo "Still need to update version to v$version in README.md (saw $temp)" exit 1 fi temp=`head -1 INSTALL.md | awk '{print $4}'` if test "$temp" != "v$version"; then - echo "Still need to update version to v$version in INSTALL.txt (saw $temp)" + echo "Still need to update version to v$version in INSTALL.md (saw $temp)" exit 1 fi - temp=`head -4 CHANGES.md | grep "Changes in" | awk '{print $4}'` + temp=`head -6 CHANGES.md | grep "Changes in" | awk '{print $4}'` if test "$temp" != "v$version"; then - echo "Still need to add Changes in v$version in CHANGES.txt (saw $temp)" + echo "Still need to add Changes in v$version in CHANGES.md (saw $temp)" exit 1 fi