mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-20 22:11:35 +00:00
fix(installer): default to Node 22.22.2 (#104073)
This commit is contained in:
committed by
GitHub
parent
5c38f62b27
commit
4b7a5a4e8b
@@ -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 });
|
||||
|
||||
Reference in New Issue
Block a user