From 72e270363fccf09035eb9e50c3a3c674e33ec927 Mon Sep 17 00:00:00 2001 From: Aaron Erickson Date: Tue, 17 Mar 2026 06:12:56 -0400 Subject: [PATCH] fix: install Node.js 22 to match scripts/install.sh install.sh installed Node 24 via nvm, but scripts/install.sh (called by the openshell sub-installer) sets nvm default to Node 22. New shells picked up Node 22, but nemoclaw was linked under Node 24's npm prefix, causing "command not found" after reopening the terminal. Closes #162 Co-Authored-By: Claude Opus 4.6 (1M context) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 652e229bb4..0a08072407 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 22 info "Node.js installed: $(node --version)" }