fix(ci): update to changed neovim release name

This commit is contained in:
Christian Clason 2025-01-27 16:53:58 +01:00
parent aaf5b7fdf7
commit 188bbf7a09
3 changed files with 73 additions and 68 deletions

View file

@ -6,10 +6,10 @@ NVIM_TAG=${NVIM_TAG-nightly}
os=$(uname -s)
if [[ $os == Linux ]]; then
wget https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/nvim-linux-x86_64.tar.gz
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
rm -rf "$PWD"/nvim-linu-x86_x64/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