fix(installer): default to Node 22.22.2 (#104073)

This commit is contained in:
Peter Steinberger
2026-07-10 19:28:49 -07:00
committed by GitHub
parent 5c38f62b27
commit 4b7a5a4e8b
3 changed files with 7 additions and 7 deletions

View File

@@ -1060,7 +1060,7 @@ describe("install-cli.sh", () => {
const tmp = mkdtempSync(join(tmpdir(), "openclaw-install-cli-freshness-"));
const prefix = join(tmp, "prefix");
const home = join(tmp, "home");
const nodeBin = join(prefix, "tools/node-v22.22.0/bin");
const nodeBin = join(prefix, "tools/node-v22.22.2/bin");
const argsLog = join(tmp, "npm-args.log");
mkdirSync(nodeBin, { recursive: true });
mkdirSync(home, { recursive: true });
@@ -1096,7 +1096,7 @@ describe("install-cli.sh", () => {
const prefix = join(tmp, "prefix");
const home = join(tmp, "home");
const project = join(tmp, "project");
const nodeBin = join(prefix, "tools/node-v22.22.0/bin");
const nodeBin = join(prefix, "tools/node-v22.22.2/bin");
const argsLog = join(tmp, "npm-args.log");
mkdirSync(nodeBin, { recursive: true });
mkdirSync(home, { recursive: true });