ci: add shebangs to scripts

This commit is contained in:
ObserverOfTime 2023-08-15 20:28:55 +03:00
parent 4613314b1f
commit f8bc6c69d7
6 changed files with 17 additions and 12 deletions

8
scripts/ci-install-ubuntu-latest.sh Normal file → Executable file
View file

@ -1,6 +1,8 @@
#!/usr/bin/env bash
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
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
ln -s "$PWD" ~/.local/share/nvim/site/pack/nvim-treesitter/start