aboutsummaryrefslogtreecommitdiff
path: root/scripts/release.sh
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-01-04 06:03:38 +0100
committerJustin M. Keyes <justinkz@gmail.com>2019-01-04 06:03:37 +0100
commite22bf529c1022af149d93ded005e04880b28fffb (patch)
treebb99f9de5dc1b843c4e47336e16adfa84b6386b1 /scripts/release.sh
parent7436a62168d9bc8bb3b5e472a4342ac6ee6d8578 (diff)
downloadrneovim-e22bf529c1022af149d93ded005e04880b28fffb.tar.gz
rneovim-e22bf529c1022af149d93ded005e04880b28fffb.tar.bz2
rneovim-e22bf529c1022af149d93ded005e04880b28fffb.zip
release.sh: fix exclusion pattern [ci skip]
grep support of "\s" pattern is unreliable.
Diffstat (limited to 'scripts/release.sh')
-rwxr-xr-xscripts/release.sh2
1 files changed, 1 insertions, 1 deletions
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}"