From 27afa03c64f73cb6cc4013d100214b348151a826 Mon Sep 17 00:00:00 2001 From: Pip Date: Tue, 10 Mar 2026 18:54:15 -0500 Subject: [PATCH] openclaw: let stderr through on agents add failure --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 7505bf0..ddfd701 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -360,7 +360,7 @@ install_openclaw() { cp "$d/IDENTITY.md" "$dest/$name/IDENTITY.md" # Register with OpenClaw so agents are usable by agentId immediately if command -v openclaw >/dev/null 2>&1; then - openclaw agents add "$name" --workspace "$dest/$name" --non-interactive 2>/dev/null || true + openclaw agents add "$name" --workspace "$dest/$name" --non-interactive || true fi (( count++ )) || true done < <(find "$src" -mindepth 1 -maxdepth 1 -type d -print0)