diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-05-17 08:50:23 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-05-17 08:57:04 +0200 |
| commit | 4d9fb7d8b0621db203959e8bc7ecc68afdf5f3d9 (patch) | |
| tree | d624366883f6611ed701c6425ed41461d77d9ea5 /scripts/ci-install.sh | |
| parent | bot(lockfile): update clojure, earthfile, erlang, idl, tlaplus, tsx, typescript (diff) | |
| download | nvim-treesitter-4d9fb7d8b0621db203959e8bc7ecc68afdf5f3d9.tar nvim-treesitter-4d9fb7d8b0621db203959e8bc7ecc68afdf5f3d9.tar.gz nvim-treesitter-4d9fb7d8b0621db203959e8bc7ecc68afdf5f3d9.tar.bz2 nvim-treesitter-4d9fb7d8b0621db203959e8bc7ecc68afdf5f3d9.tar.lz nvim-treesitter-4d9fb7d8b0621db203959e8bc7ecc68afdf5f3d9.tar.xz nvim-treesitter-4d9fb7d8b0621db203959e8bc7ecc68afdf5f3d9.tar.zst nvim-treesitter-4d9fb7d8b0621db203959e8bc7ecc68afdf5f3d9.zip | |
ci: Nvim 0.10 macos artifact name
Diffstat (limited to 'scripts/ci-install.sh')
| -rwxr-xr-x | scripts/ci-install.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/ci-install.sh b/scripts/ci-install.sh index 4f4265465..4677bb92e 100755 --- a/scripts/ci-install.sh +++ b/scripts/ci-install.sh @@ -11,9 +11,10 @@ if [[ $os == Linux ]]; then 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 - 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 + RELEASE_NAME="nvim-macos-$(uname -m)" + curl -L "https://github.com/neovim/neovim/releases/download/${NVIM_TAG}/$RELEASE_NAME.tar.gz" | tar -xz + sudo ln -s "$PWD/$RELEASE_NAME/bin/nvim" /usr/local/bin + rm -rf "$PWD/$RELEASE_NAME/lib/nvim/parser" mkdir -p ~/.local/share/nvim/site/pack/nvim-treesitter/start ln -s "$PWD" ~/.local/share/nvim/site/pack/nvim-treesitter/start else |
