]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Need to look further down in CHANGES.md, fix messages to use .md suffix.
authorMichael R Sweet <michaelrsweet@gmail.com>
Wed, 1 Nov 2017 14:59:53 +0000 (10:59 -0400)
committerMichael R Sweet <michaelrsweet@gmail.com>
Wed, 1 Nov 2017 14:59:53 +0000 (10:59 -0400)
tools/makesrcdist

index 1c763556268161d33ebc230df547c1f03c14d122..7ce1e589d7b8da35b12490eb580453faa406ff0c 100755 (executable)
@@ -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