From 49b4b5d5e733a6ad9f687a22140c583cdd968a52 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Sat, 16 May 2026 22:44:03 +0100 Subject: [PATCH] fix: repair broken multi-line comment causing exit 127 estate-wide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lines 151-152 were a comment whose continuation line lost its '#' prefix ($name split across a newline), so bash executed 'ame/project and continue to be validated normally.' → exit 127. This failed the 'Validate A2ML manifests' check for EVERY commit in EVERY repo pinned to this action. Collapsed back to a single valid comment line. Co-Authored-By: Claude Opus 4.7 (1M context) --- validate-a2ml.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/validate-a2ml.sh b/validate-a2ml.sh index b84a756..bbbebc3 100755 --- a/validate-a2ml.sh +++ b/validate-a2ml.sh @@ -148,8 +148,7 @@ validate_a2ml() { # Canonical typed manifests under .machine_readable/6a2/ — identity comes # from the enclosing directory + filename, not an in-file field. Sibling # files in the same directory (ECOSYSTEM.a2ml, STATE.a2ml) DO carry their - # own -ame/project and continue to be validated normally. + # own $name/project and continue to be validated normally. case "$basename" in AGENTIC.a2ml|META.a2ml|NEUROSYM.a2ml|PLAYBOOK.a2ml) is_manifest=true