From 6fdb57ab636cece91387d60e0161413582cc231e Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Thu, 8 Jun 2023 14:23:28 +0200 Subject: [PATCH] :bug: fix nvim dl url --- install_nvim.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install_nvim.sh b/install_nvim.sh index ca19952..9bf816d 100644 --- a/install_nvim.sh +++ b/install_nvim.sh @@ -4,11 +4,11 @@ echo >&2 "=====================================================================" echo >&2 " >> installing nvim" # curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage -NVIM_VERSION=0.9.0 +# NVIM_VERSION=0.9.0 echo >&2 " >>> downloading nvim" # curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage -curl -LO https://github.com/neovim/neovim/releases/tag/v${NVIM_VERSION}/download/nvim.appimage +curl -LO https://github.com/neovim/neovim/releases/download/v0.9.0/nvim.appimage echo >&2 " >>> examine" -cat nvim.appimage +# cat nvim.appimage chmod u+x nvim.appimage ./nvim.appimage