pin neovim to v0.11.3

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Paul Trowbridge 2026-05-10 04:40:38 -04:00
parent eb4a7359ad
commit d3bf321341

View File

@ -2,7 +2,7 @@
set -euo pipefail set -euo pipefail
echo "============================================" echo "============================================"
echo "Neovim Latest Installation Script" echo "Neovim v0.11.3 Installation Script"
echo "============================================" echo "============================================"
echo "" echo ""
echo "This script will run the following commands with sudo:" echo "This script will run the following commands with sudo:"
@ -40,7 +40,7 @@ echo "Downloading Neovim..."
TEMP_DIR=$(mktemp -d) TEMP_DIR=$(mktemp -d)
cd "$TEMP_DIR" cd "$TEMP_DIR"
if ! curl -fsSL -o nvim-linux-x86_64.tar.gz https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz; then if ! curl -fsSL -o nvim-linux-x86_64.tar.gz https://github.com/neovim/neovim/releases/download/v0.11.3/nvim-linux-x86_64.tar.gz; then
echo "Error: Failed to download Neovim" >&2 echo "Error: Failed to download Neovim" >&2
rm -rf "$TEMP_DIR" rm -rf "$TEMP_DIR"
exit 1 exit 1