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
Copy file name to clipboardExpand all lines: src/cli/update-cli/progress.ts
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,13 @@ export function inferUpdateFailureHints(result: UpdateRunResult): string[] {
85
85
hints.push(
86
86
"Detected permission failure (EACCES). Re-run with a writable global prefix or sudo (for system-managed Node installs).",
87
87
);
88
+
hints.push(
89
+
"If you recover with sudo/manual package install on a managed Gateway, stop the Gateway first so it does not load files while the package tree is being replaced.",
90
+
);
88
91
hints.push("Example: npm config set prefix ~/.local && npm i -g openclaw@latest");
0 commit comments