diff options
author | kylo252 <[email protected]> | 2022-01-24 13:02:19 +0100 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-01-24 13:02:19 +0100 |
commit | 0cdf7e2e5ddd30fa677fd422ea1052110b42b27d (patch) | |
tree | d96d137fdfac2c65947fa037e4634362e1456039 /utils/installer/install.sh | |
parent | 440324996c37591be74344b17f8450662dac4759 (diff) | |
parent | 25e8b2234915f7862d1c6fcd9477b0c1b1ea1bf4 (diff) |
Merge branch 'rolling'
Diffstat (limited to 'utils/installer/install.sh')
-rwxr-xr-x | utils/installer/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index c30f2efe..309b8fdc 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -171,11 +171,11 @@ function print_missing_dep_msg() { } function check_neovim_min_version() { - local verify_version_cmd='if !has("nvim-0.6.0") | cquit | else | quit | endif' + local verify_version_cmd='if !has("nvim-0.6.1") | cquit | else | quit | endif' # exit with an error if min_version not found if ! nvim --headless -u NONE -c "$verify_version_cmd"; then - echo "[ERROR]: LunarVim requires at least Neovim v0.6.0 or higher" + echo "[ERROR]: LunarVim requires at least Neovim v0.6.1 or higher" exit 1 fi } |