From 3ed97c65a114ad6b2071401381a69ee62644cb9e Mon Sep 17 00:00:00 2001 From: Michael Yockey Date: Sat, 16 Nov 2024 19:08:58 -0500 Subject: [PATCH] install: Separate curl args on Neovim install --- install.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.zsh b/install.zsh index 26ae796..5b99e52 100755 --- a/install.zsh +++ b/install.zsh @@ -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