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

11
scripts/ci-install-macos-latest.sh Normal file → Executable file
View file

@ -1,6 +1,7 @@
curl -L https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/nvim-macos.tar.gz | tar -xz
sudo ln -s $(pwd)/nvim-macos/bin/nvim /usr/local/bin
rm -rf $(pwd)/nvim-macos/lib/nvim/parser
mkdir -p ~/.local/share/nvim/site/pack/nvim-treesitter/start
ln -s $(pwd) ~/.local/share/nvim/site/pack/nvim-treesitter/start
#!/usr/bin/env bash
curl -L https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/nvim-macos.tar.gz | tar -xz
sudo ln -s "$PWD"/nvim-macos/bin/nvim /usr/local/bin
rm -rf "$PWD"/nvim-macos/lib/nvim/parser
mkdir -p ~/.local/share/nvim/site/pack/nvim-treesitter/start
ln -s "$PWD" ~/.local/share/nvim/site/pack/nvim-treesitter/start