From fa24018cd52e0960cf164c17ac9b999ce9260844 Mon Sep 17 00:00:00 2001 From: Michael Yockey Date: Sat, 16 Nov 2024 19:13:23 -0500 Subject: [PATCH] install: It's lowercase o to name the download file in curl --- install.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.zsh b/install.zsh index 5b99e52..63c64ee 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 -L -O 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