From 970f96779dbd3c8761a032a0a86da050681f6053 Mon Sep 17 00:00:00 2001 From: pika Date: Mon, 17 Mar 2025 19:05:09 +0100 Subject: [PATCH] fix: again --- installs/neovim.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installs/neovim.sh b/installs/neovim.sh index 7b29fb0..fffdd43 100755 --- a/installs/neovim.sh +++ b/installs/neovim.sh @@ -116,7 +116,8 @@ latest_version=$(curl -s https://api.github.com/repos/neovim/neovim/releases/latest | grep 'tag_name' | cut -d\" -f4) echo_info "Downloading Neovim version $latest_version..." - curl -fsSL -o "$tempdir/nvim.tar.gz" "https://github.com/neovim/neovim/releases/download/${latest_version}/nvim-linux64.tar.gz" && cd "$tempdir" + curl -fsSL -o "$tempdir/nvim.tar.gz" "https://github.com/neovim/neovim/releases/download/${latest_version}/nvim-linux-x86_64.tar.gz" && cd "$tempdir" + # https://github.com/neovim/neovim/releases/download/v0.10.4/nvim-linux-x86_64.tar.gz tar -xf nvim.tar.gz cp -r ./nvim-linux64 "$HOME/.bin"