diff options
author | James McCoy <jamessan@jamessan.com> | 2021-05-11 21:47:43 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-05-19 22:50:05 -0400 |
commit | cf714bf418c4e1951466aac4c0dff09cfe9be225 (patch) | |
tree | 0afb25ce7db5e69bfbf94c410b50d6489fc8575a | |
parent | 86d35bef13496e7730a2cce7eabe0190c299f4b4 (diff) | |
download | rneovim-cf714bf418c4e1951466aac4c0dff09cfe9be225.tar.gz rneovim-cf714bf418c4e1951466aac4c0dff09cfe9be225.tar.bz2 rneovim-cf714bf418c4e1951466aac4c0dff09cfe9be225.zip |
vim-patch.sh -m: Ignore changes to version.c
[skip ci]
-rwxr-xr-x | scripts/vim-patch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index f61737b530..86552c0c8d 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -578,7 +578,7 @@ list_missing_previous_vimpatches_for_patch() { local -a fnames while IFS= read -r line ; do fnames+=("$line") - done < <(git -C "${VIM_SOURCE_DIR}" diff-tree --no-commit-id --name-only -r "${vim_commit}") + done < <(git -C "${VIM_SOURCE_DIR}" diff-tree --no-commit-id --name-only -r "${vim_commit}" -- . ':!src/version.c') local i=0 local n=${#fnames[@]} printf '=== getting missing patches for %d files ===\n' "$n" |