aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar dmarting <dmarting@google.com>2017-10-10 16:05:44 +0200
committerGravatar Marcel Hlopko <hlopko@google.com>2017-10-11 10:55:26 +0200
commit7c672ac643dd59bf4b3e284c6ad019c54545492f (patch)
tree390c444c9e3eb5602066c390ed7bfb1e9867ca83 /scripts
parent7c605cf6ea9755a06e5abb16a631faac8ebe2937 (diff)
Release notes: exclude no.
RELNOTES: No. (test) PiperOrigin-RevId: 171673073
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/release/relnotes.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/release/relnotes.sh b/scripts/release/relnotes.sh
index 817ea621d7..1f2493bf34 100755
--- a/scripts/release/relnotes.sh
+++ b/scripts/release/relnotes.sh
@@ -88,7 +88,7 @@ function extract_release_note() {
if [[ "$relnote" =~ $regex ]]; then
local relnote_kind=${BASH_REMATCH[2]}
local relnote_text="${BASH_REMATCH[3]}"
- if [[ ! "$(echo $relnote_text | awk '{print tolower($0)}')" =~ ^(none|n/a)?.?$ ]]; then
+ if [[ ! "$(echo $relnote_text | awk '{print tolower($0)}')" =~ ^(none|n/a|no[ \.])?.?$ ]]; then
eval "RELNOTES_${relnote_kind}+=(\"\${relnote_text}\")"
fi
fi