Browse Source

add -ce support

Signed-off-by: Victor Vieux <victorvieux@gmail.com>
(cherry picked from commit 44aec1b69261e8cee0dd416adbbe7a2443f759d6)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Victor Vieux 8 years ago
parent
commit
98b7c4b00a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hack/validate/changelog-well-formed

+ 1 - 1
hack/validate/changelog-well-formed

@@ -10,7 +10,7 @@ fi
 changelogWellFormed=1
 
 # e.g. "## 1.12.3 (2016-10-26)"
-VER_LINE_REGEX='^## [0-9]+\.[0-9]+\.[0-9]+ \([0-9]+-[0-9]+-[0-9]+\)$'
+VER_LINE_REGEX='^## [0-9]+\.[0-9]+\.[0-9]+(-ce)? \([0-9]+-[0-9]+-[0-9]+\)$'
 while read -r line; do
   if ! [[ "$line" =~ $VER_LINE_REGEX ]]; then
     echo "Malformed changelog $changelogFile line \"$line\"" >&2