diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-01-04 06:03:38 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-01-04 20:05:08 +0100 |
commit | 8b3113ce7a7e8d692c9aba8a256aa26b4c647203 (patch) | |
tree | 5eb7f1d7c9bcc577807b1947fb8af022b0778a71 /scripts/release.sh | |
parent | a597ab8d1ba7bf67128ceec67880d7d8b7f92280 (diff) | |
download | rneovim-8b3113ce7a7e8d692c9aba8a256aa26b4c647203.tar.gz rneovim-8b3113ce7a7e8d692c9aba8a256aa26b4c647203.tar.bz2 rneovim-8b3113ce7a7e8d692c9aba8a256aa26b4c647203.zip |
release.sh: fix exclusion pattern [ci skip]
grep support of "\s" pattern is unreliable.
Diffstat (limited to 'scripts/release.sh')
-rwxr-xr-x | scripts/release.sh | 2 |
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}" |