vim-patch.sh: fix "unbound variable" error with Bash < 4.4 [ci skip] (#10917)

Ref: https://github.com/neovim/neovim/pull/10888#issuecomment-526774032
This commit is contained in:
Daniel Hahler 2019-09-03 10:12:02 +02:00 committed by GitHub
parent 6434a0bf99
commit d000f02bc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -430,6 +430,7 @@ list_missing_vimpatches() {
fi
# Get missing Vim commits
set +u # Avoid "unbound variable" with bash < 4.4 below.
for vim_commit in $(list_vim_commits "${git_log_args[@]}"); do
# Check for vim-patch:<commit_hash> (usually runtime updates).
token="vim-patch:${vim_commit:0:7}"
@ -449,6 +450,7 @@ list_missing_vimpatches() {
echo "$vim_commit"
fi
done
set -u
}
# Prints a human-formatted list of Vim commits, with instructional messages.