mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
release.sh: fix exclusion pattern [ci skip]
grep support of "\s" pattern is unreliable.
This commit is contained in:
@ -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}"
|
||||
|
Reference in New Issue
Block a user