diff options
author | Poh Zi How <poh.zihow@gmail.com> | 2020-06-01 01:27:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-31 10:27:05 -0700 |
commit | ed815c61fdc3fa5a0873a3f9005fdf3c5c49e8df (patch) | |
tree | 2759ffe0d1e697d4ae34fe96f5e92b97f56d96a3 /scripts/vim-patch.sh | |
parent | 4b87248285e7d954e496f84a7ece58b4f1a830ca (diff) | |
download | rneovim-ed815c61fdc3fa5a0873a3f9005fdf3c5c49e8df.tar.gz rneovim-ed815c61fdc3fa5a0873a3f9005fdf3c5c49e8df.tar.bz2 rneovim-ed815c61fdc3fa5a0873a3f9005fdf3c5c49e8df.zip |
vim-patch.sh: fix bash version-check message #12398
Diffstat (limited to 'scripts/vim-patch.sh')
-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 a8b622d5c4..9c4349abca 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -7,7 +7,7 @@ set -p # Ensure that the user has a bash that supports -A if [[ "${BASH_VERSINFO[0]}" -lt 4 ]]; then - echo "This script requires bash version 3 or later (you have ${BASH_VERSION})." >&2 + >&2 echo "error: script requires bash 4+ (you have ${BASH_VERSION})." exit 1 fi |