From c3196597022c12ff9f4ff3a76fd188b92ec3abf2 Mon Sep 17 00:00:00 2001 From: Josef Budniakiewicz Date: Thu, 3 Jul 2025 17:37:07 -0400 Subject: [PATCH] fix: change choco download snippets to use nodejs package, and specify full version in version arg --- apps/site/snippets/en/download/choco.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/snippets/en/download/choco.bash b/apps/site/snippets/en/download/choco.bash index b6fb9190def21..8a79968b2ed64 100644 --- a/apps/site/snippets/en/download/choco.bash +++ b/apps/site/snippets/en/download/choco.bash @@ -2,7 +2,7 @@ powershell -c "irm https://community.chocolatey.org/install.ps1|iex" # Download and install Node.js: -choco install nodejs-lts --version="${props.release.major}" +choco install nodejs --version="${props.release.version}" # Verify the Node.js version: node -v # Should print "${props.release.versionWithPrefix}".