From 7d28f8afc4a0f94a08f478400c657d29a448c984 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Thu, 30 Jan 2025 08:53:22 +0100 Subject: fix(ci): update to changed neovim release name --- scripts/ci-install.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/ci-install.sh b/scripts/ci-install.sh index 7e99a8de4..cd33354d1 100755 --- a/scripts/ci-install.sh +++ b/scripts/ci-install.sh @@ -3,20 +3,13 @@ set -e os=$(uname -s) -if [[ $os == Linux ]] && [[ ${NVIM_TAG} == nightly ]]; then +if [[ $os == Linux ]] then wget https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/nvim-linux-x86_64.tar.gz tar -zxf nvim-linux-x86_64.tar.gz sudo ln -s "$PWD"/nvim-linux-x86_64/bin/nvim /usr/local/bin rm -rf "$PWD"/nvim-linux-x86_64/lib/nvim/parser mkdir -p ~/.local/share/nvim/site/pack/nvim-treesitter/start ln -s "$PWD" ~/.local/share/nvim/site/pack/nvim-treesitter/start -elif [[ $os == Linux ]]; then - wget https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/nvim-linux64.tar.gz - tar -zxf nvim-linux64.tar.gz - sudo ln -s "$PWD"/nvim-linux64/bin/nvim /usr/local/bin - rm -rf "$PWD"/nvim-linux64/lib/nvim/parser - mkdir -p ~/.local/share/nvim/site/pack/nvim-treesitter/start - ln -s "$PWD" ~/.local/share/nvim/site/pack/nvim-treesitter/start elif [[ $os == Darwin ]]; then RELEASE_NAME="nvim-macos-$(uname -m)" curl -L "https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/$RELEASE_NAME.tar.gz" | tar -xz -- cgit v1.2.3-70-g09d2