aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci-install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci-install.sh b/scripts/ci-install.sh
index 100cfde27..43f3c4ade 100755
--- a/scripts/ci-install.sh
+++ b/scripts/ci-install.sh
@@ -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