Skip to content

Commit 6bc6000

Browse files
committed
fix(workflow): escape remaining shell arithmetic expansion
Line 155 also had unescaped $(( causing GitHub parser error
1 parent 7e2e0c6 commit 6bc6000

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/translate-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
THEME_FAILURES=$(echo "$JSON_PART" | jq -r '.themeFailures // "0"' 2>/dev/null || echo "0")
153153
154154
# Determine if there were any failures
155-
TOTAL_FAILURES=$((FAILED_TRANSLATIONS + CODE_JSON_FAILURES + THEME_FAILURES))
155+
TOTAL_FAILURES=$$((FAILED_TRANSLATIONS + CODE_JSON_FAILURES + THEME_FAILURES))
156156
if [ "$TOTAL_FAILURES" -gt 0 ]; then
157157
HAS_FAILURES="true"
158158
fi

0 commit comments

Comments
 (0)