Created
September 10, 2021 07:24
-
-
Save onjin/b281e6d9dc3194995699f57b7a1225be to your computer and use it in GitHub Desktop.
update nvim nightly bash script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update-nvim () { | |
target=${1:-nightly} | |
tmp_bin=/tmp/nvim.appimage.${target} | |
previous=$(nvim --version|grep '^NVIM') | |
url="https://github.com/neovim/neovim/releases/download/${target}/nvim.appimage" | |
echo "[update-nvim] target version ${target}" | |
echo "[update-nvim] current version ${previous}" | |
echo "[update-nvim] downloading file ${url}" | |
curl --output ${tmp_bin} --silent -L ${url} | |
file_type=$(file ${tmp_bin}) | |
if [[ $file_type =~ .*executable.* ]]; then | |
mv ${tmp_bin} ~/.local/bin/nvim | |
chmod +x ~/.local/bin/nvim | |
current=$(nvim --version|grep '^NVIM') | |
echo "[update-nvim] installed version ${current}" | |
else | |
echo "[update-nvim] Invalid file ${file_type}; exiting" | |
return 1 | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment