install: Separate curl args on Neovim install

This commit is contained in:
2024-11-16 19:08:58 -05:00
parent 56ce1cea16
commit 3ed97c65a1

View File

@@ -28,7 +28,7 @@ case `uname` in
if [[ ! -a ~/.local/bin/nvim ]]; then
echo "Installing Installing Neovim"
pushd ~/.local/bin
curl -LO nvim https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
curl -L -O nvim https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
chmod u+x nvim
popd
fi