We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 822ce85 commit af26b78Copy full SHA for af26b78
1 file changed
scripts/makesrcdist
@@ -59,9 +59,15 @@ else
59
exit 1
60
fi
61
62
- temp="$(head -6 CHANGES.md | grep "^libcups v" | awk '{print $2}')"
+ temp="$(head -6 CHANGES.md | grep "^v" | awk '{print $1}')"
63
if test "$temp" != "v$version"; then
64
- echo "Still need to add Changes in v$version in CHANGES.md (saw $temp)"
+ echo "Still need to add v$version changes to CHANGES.md (saw $temp)"
65
+ exit 1
66
+ fi
67
+
68
+ temp="$(head -6 CHANGES.md | grep "^v" | awk '{print $3}')"
69
+ if test "$temp" = "YYYY-MM-DD"; then
70
+ echo "Still need to set release date in CHANGES.md (saw $temp)"
71
72
73
0 commit comments