From d000f02bc0803cd92503293e505a2d2b4c4b8514 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Tue, 3 Sep 2019 10:12:02 +0200 Subject: [PATCH] vim-patch.sh: fix "unbound variable" error with Bash < 4.4 [ci skip] (#10917) Ref: https://github.com/neovim/neovim/pull/10888#issuecomment-526774032 --- scripts/vim-patch.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index a5dca26b46..2cc32f0dd0 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -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: (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.