summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMichael R Sweet <michaelrsweet@gmail.com>2017-11-01 10:59:53 -0400
committerMichael R Sweet <michaelrsweet@gmail.com>2017-11-01 10:59:53 -0400
commit18a1649286d8978552c6334934a23dc6efe5fc0d (patch)
treeeca567e47f7cab62584d8f39d38dffd5cd6ecf60 /tools
parent58c36830230dc358da743911e96e5b93d1bd3934 (diff)
downloadcups-18a1649286d8978552c6334934a23dc6efe5fc0d.tar.gz
Need to look further down in CHANGES.md, fix messages to use .md suffix.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/makesrcdist8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/makesrcdist b/tools/makesrcdist
index 1c7635562..7ce1e589d 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