Skip to content

Commit

Permalink
Update version check to reflect new changelog title format.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael R Sweet committed Nov 1, 2017
1 parent 303be29 commit 58c3683
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/makesrcdist
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ else
exit 1
fi

temp=`head -4 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)"
temp=`head -4 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)"
exit 1
fi

Expand Down

0 comments on commit 58c3683

Please sign in to comment.