From 6320f3cc3b0111e3957980f7f489ef9b62dc8c42 Mon Sep 17 00:00:00 2001 From: spawn-qa-bot Date: Thu, 26 Mar 2026 08:44:41 +0000 Subject: [PATCH] fix: add ai-review.sh to bash -n syntax check list in e2e-lib.sh ai-review.sh is sourced by e2e.sh but was missing from the bash -n syntax check loop in sh/test/e2e-lib.sh. This means syntax errors in ai-review.sh would not be caught by the test harness. --- sh/test/e2e-lib.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/sh/test/e2e-lib.sh b/sh/test/e2e-lib.sh index 46da1b6d..e2279705 100644 --- a/sh/test/e2e-lib.sh +++ b/sh/test/e2e-lib.sh @@ -458,6 +458,7 @@ for script in \ "${REPO_ROOT}/sh/e2e/lib/teardown.sh" \ "${REPO_ROOT}/sh/e2e/lib/soak.sh" \ "${REPO_ROOT}/sh/e2e/lib/interactive.sh" \ + "${REPO_ROOT}/sh/e2e/lib/ai-review.sh" \ "${REPO_ROOT}/sh/e2e/lib/clouds/aws.sh" \ "${REPO_ROOT}/sh/e2e/lib/clouds/digitalocean.sh" \ "${REPO_ROOT}/sh/e2e/lib/clouds/gcp.sh" \