diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-07-01 18:37:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-01 12:37:03 -0400 |
commit | e8247bc739cd0cdc32833f44973bf2d635373086 (patch) | |
tree | e45cde1ca10b7c5fd9c37a2f98613426d10c6fe7 /scripts/vim-patch.sh | |
parent | f133ab598f063b1d8afb5fb6f97f7f4702dd14ee (diff) | |
download | rneovim-e8247bc739cd0cdc32833f44973bf2d635373086.tar.gz rneovim-e8247bc739cd0cdc32833f44973bf2d635373086.tar.bz2 rneovim-e8247bc739cd0cdc32833f44973bf2d635373086.zip |
lint (#14941)
Fix SC2155 error, found by shellcheck v0.7.2.
https://github.com/koalaman/shellcheck/wiki/SC2155
Diffstat (limited to 'scripts/vim-patch.sh')
-rwxr-xr-x | scripts/vim-patch.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index d53de42c6c..4fd9711619 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -14,7 +14,8 @@ fi readonly NVIM_SOURCE_DIR="${NVIM_SOURCE_DIR:-$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)}" readonly VIM_SOURCE_DIR_DEFAULT="${NVIM_SOURCE_DIR}/.vim-src" readonly VIM_SOURCE_DIR="${VIM_SOURCE_DIR:-${VIM_SOURCE_DIR_DEFAULT}}" -readonly BASENAME="$(basename "${0}")" +BASENAME="$(basename "${0}")" +readonly BASENAME readonly BRANCH_PREFIX="vim-" CREATED_FILES=() |