From c642ebf81d7d2c65c815202996c160adf89c4ddb Mon Sep 17 00:00:00 2001 From: openhands Date: Sat, 21 Mar 2026 19:59:55 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20bundled=20dust=20cleanup=20=E2=80=94=20s?= =?UTF-8?q?et-euo-pipefail=20(#516)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add missing `set -euo pipefail` to three scripts per AGENTS.md conventions: - lib/ci-helpers.sh - lib/parse-deps.sh - supervisor/supervisor-poll.sh Co-Authored-By: Claude Opus 4.6 (1M context) --- lib/ci-helpers.sh | 1 + lib/parse-deps.sh | 1 + supervisor/supervisor-poll.sh | 1 + 3 files changed, 3 insertions(+) diff --git a/lib/ci-helpers.sh b/lib/ci-helpers.sh index 84c9503..e24dfc8 100644 --- a/lib/ci-helpers.sh +++ b/lib/ci-helpers.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -euo pipefail # ci-helpers.sh — Shared CI helper functions # # Source from any script: source "$(dirname "$0")/../lib/ci-helpers.sh" diff --git a/lib/parse-deps.sh b/lib/parse-deps.sh index c0c58b4..4c3bc85 100755 --- a/lib/parse-deps.sh +++ b/lib/parse-deps.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -euo pipefail # parse-deps.sh — Extract dependency issue numbers from an issue body # # Usage: diff --git a/supervisor/supervisor-poll.sh b/supervisor/supervisor-poll.sh index bdc8529..da1cb97 100755 --- a/supervisor/supervisor-poll.sh +++ b/supervisor/supervisor-poll.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -euo pipefail # supervisor-poll.sh — Supervisor agent: bash checks + claude -p for fixes # # Two-layer architecture: