mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 11:50:09 -04:00
ci: add shebangs to scripts
This commit is contained in:
parent
4613314b1f
commit
f8bc6c69d7
6 changed files with 17 additions and 12 deletions
8
scripts/ci-install-ubuntu-latest.sh
Normal file → Executable file
8
scripts/ci-install-ubuntu-latest.sh
Normal file → Executable 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue