1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-13 23:27:59 +08:00

ci(nvim): fix nvim nightly link

This commit is contained in:
Eric Wong 2025-02-03 22:37:44 +08:00
parent a5689a24db
commit 54f7df3e84
No known key found for this signature in database
GPG Key ID: 41BB7053E835C848

View File

@ -38,7 +38,7 @@ install_nvim() {
local out="${DEPS}/_neovim/$tag"
mkdir -p $out
if [[ $tag == "nightly" ]]; then
curl -o $tmp/nvim-linux64.tar.gz -L "https://github.com/neovim/neovim/releases/download/$tag/nvim-linux-x86_64.gz"
curl -o $tmp/nvim-linux64.tar.gz -L "https://github.com/neovim/neovim/releases/download/$tag/nvim-linux-x86_64.tar.gz"
else
curl -o $tmp/nvim-linux64.tar.gz -L "https://github.com/neovim/neovim/releases/download/$tag/nvim-linux64.tar.gz"
fi