From 4c16f1b11138fadc072c74fc166ccbfbabadbf83 Mon Sep 17 00:00:00 2001 From: Glen Barber Date: Mon, 8 Dec 2014 15:45:07 +0000 Subject: [PATCH] Adjust the 'Relnotes:' search to look for any non-empty string following the tag. Sponsored by: The FreeBSD Foundation --- release/scripts/relnotes-search.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/relnotes-search.sh b/release/scripts/relnotes-search.sh index a9a931a84c1..895f3998f8a 100755 --- a/release/scripts/relnotes-search.sh +++ b/release/scripts/relnotes-search.sh @@ -125,7 +125,7 @@ main() { # All tests passed. Let's see what can possibly go wrong # from here. The search string specified should match this # in PCRE speak: ':[\t ]*' - ${svn} log ${rev} --search 'Relnotes:?[^ ]*' ${1} > ${where} + ${svn} log ${rev} --search 'Relnotes:*[A-Za-z0-9]*' ${1} > ${where} return $? }