From 2c8304ea31bdf1d67d6ef3da4eafa440dbd927d7 Mon Sep 17 00:00:00 2001 From: Chris Estreich Date: Sat, 12 Apr 2025 01:06:03 -0700 Subject: [PATCH] Fix node version string when running asdf install nodejs (#2524) --- evals/scripts/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evals/scripts/setup.sh b/evals/scripts/setup.sh index bd2e1d8cb1..ed66963542 100755 --- a/evals/scripts/setup.sh +++ b/evals/scripts/setup.sh @@ -179,8 +179,8 @@ for i in "${!options[@]}"; do case "${plugin}" in "nodejs") if ! command -v node &>/dev/null; then - asdf install nodejs v20.18.1 || exit 1 - asdf set nodejs v20.18.1 || exit 1 + asdf install nodejs 20.18.1 || exit 1 + asdf set nodejs 20.18.1 || exit 1 NODE_VERSION=$(node --version) echo "✅ Node.js is installed ($NODE_VERSION)" else