diff options
Diffstat (limited to 'tools/makesrcdist')
-rwxr-xr-x | tools/makesrcdist | 8 |
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 |