vim-patch.sh: get all untagged patches #3250

This commit is contained in:
Justin Gassner 2015-08-27 01:11:22 +02:00 committed by Justin M. Keyes
parent e12d371f9d
commit aafbe5d28a

View File

@ -170,7 +170,7 @@ list_vim_patches() {
# Get "runtime update" commits since e2719096.
local vim_runtime_commits=$(cd "${VIM_SOURCE_DIR}" && \
git log --format='%H' --grep='Updated' e2719096250a19ecdd9a35d13702879f163d2a50..HEAD)
git log --format='%H' --grep='^patch' --grep='^updated for version' --invert-grep e2719096250a19ecdd9a35d13702879f163d2a50..HEAD)
local vim_commit
for vim_commit in ${vim_tags} ${vim_runtime_commits}; do