From a386fc4b10484a4f1e6c1570e890cac0b360cdaa Mon Sep 17 00:00:00 2001 From: Brian Taylor Date: Tue, 17 Mar 2026 08:57:33 -0700 Subject: [PATCH] fix: install recommended Node.js version instead of hardcoded 24 --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 652e229bb4..aff4cce205 100755 --- a/install.sh +++ b/install.sh @@ -113,7 +113,7 @@ install_nodejs() { bash "$nvm_tmp" rm -f "$nvm_tmp" ensure_nvm_loaded - nvm install 24 + nvm install ${RECOMMENDED_NODE_MAJOR} info "Node.js installed: $(node --version)" }