From e22bf529c1022af149d93ded005e04880b28fffb Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Fri, 4 Jan 2019 06:03:38 +0100 Subject: release.sh: fix exclusion pattern [ci skip] grep support of "\s" pattern is unreliable. --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/release.sh') diff --git a/scripts/release.sh b/scripts/release.sh index 66ffd3e6fe..1645a10452 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -67,7 +67,7 @@ _do_release_commit() { if ! test "$ARG1" = '--use-current-commit' ; then echo "Building changelog since ${__LAST_TAG}..." - __CHANGELOG="$(./scripts/git-log-pretty-since.sh "$__LAST_TAG" 'vim-patch:\S')" + __CHANGELOG="$(./scripts/git-log-pretty-since.sh "$__LAST_TAG" 'vim-patch:[^[:space:]]')" git add CMakeLists.txt git commit --edit -m "${__RELEASE_MSG} ${__CHANGELOG}" -- cgit