You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Browse filesBrowse the repository at this point in the historyBrowse files
JiaDe
committed
fix: use system-level Node to prevent stale nvm paths on upgrade (#168)
Switch the template off nvm to a system-level Node (NodeSource): /usr/bin/node with globals at /usr/lib/node_modules. These paths are Node-version-independent and survive in-place apt upgrades, so neither the /usr/local/bin/openclaw CLI wrapper nor extension 'openclaw' peer links go stale across Node changes (the root cause of the reboot crash-loop in #168). Also removes the 'find ... | head -1' wrong-tree hazard, and adds a post-setup sweep that repoints ~/.openclaw/extensions/*/node_modules/openclaw to the current global install as a safety net. Default OpenClawVersion bumped to a current pinned release.
Copy file name to clipboardExpand all lines: clawdbot-bedrock.yaml
+36-40Lines changed: 36 additions & 40 deletions
Original file line number
Diff line number
Diff line change
@@ -79,14 +79,15 @@ Parameters:
79
79
80
80
OpenClawVersion:
81
81
Type: String
82
-
Default: "2026.4.27"
82
+
Default: "2026.6.9"
83
83
AllowedValues:
84
84
- "2026.3.24"
85
85
- "2026.4.5"
86
86
- "2026.4.10"
87
87
- "2026.4.27"
88
+
- "2026.6.9"
88
89
- "latest"
89
-
Description: "OpenClaw version. 2026.3.24 (no model approval needed, WeChat compatible). 2026.4.5+ (auto-discovery, embeddings)."
90
+
Description: "OpenClaw version (pinned). 2026.3.24 (no model approval needed, WeChat compatible). 2026.4.5+ (auto-discovery, embeddings). 2026.6.9 (current stable; requires system Node, handled by this template). Avoid 'latest' in production — pin to a tested version."
0 commit comments