Skip to content

Commit 8b4ba25

Browse files
committed
Fix bash syntax error: missing closing quote in builds-mattermost.yaml
The line BODYLINE="${BODYLINE%\""}" was missing a closing double quote, causing 'unexpected EOF while looking for matching quote' error. Fixed to: BODYLINE="${BODYLINE%\""}"
1 parent 3854068 commit 8b4ba25

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/builds-mattermost.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# Properly handle JSON-escaped body - strip outer quotes and truncate
4242
BODYLINE="$BODY"
4343
BODYLINE="${BODYLINE#\"}"
44-
BODYLINE="${BODYLINE%\""}
44+
BODYLINE="${BODYLINE%\"}"
4545
TRIMMED_BODY="${BODYLINE:0:350}"
4646
4747
# Create JSON using jq for proper escaping

0 commit comments

Comments
 (0)