Adjust the 'Relnotes:' search to look for any non-empty

string following the tag.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2014-12-08 15:45:07 +00:00
parent d3fc0cb884
commit 4c16f1b111
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=275613

View file

@ -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 $?
}