Skip to content

Commit f8517bb

Browse files
fix: repair broken multi-line comment causing exit 127 estate-wide (#11)
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) <noreply@anthropic.com>
1 parent aa5e01e commit f8517bb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

validate-a2ml.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,7 @@ validate_a2ml() {
148148
# Canonical typed manifests under .machine_readable/6a2/ — identity comes
149149
# from the enclosing directory + filename, not an in-file field. Sibling
150150
# files in the same directory (ECOSYSTEM.a2ml, STATE.a2ml) DO carry their
151-
# own
152-
ame/project and continue to be validated normally.
151+
# own $name/project and continue to be validated normally.
153152
case "$basename" in
154153
AGENTIC.a2ml|META.a2ml|NEUROSYM.a2ml|PLAYBOOK.a2ml)
155154
is_manifest=true

0 commit comments

Comments
 (0)