Skip to content

Commit 62a6f53

Browse files
authored
chore: fix syntax error near unexpected token (#676)
1 parent 54f99fc commit 62a6f53

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/archive/workflows/cloud-e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -424,10 +424,10 @@ jobs:
424424
COVERAGE=$(echo "${API_COVERAGE_SUMMARY}" | (grep "Coverage: " || true))
425425
DEPRECATED_APIS=$(echo "${API_COVERAGE_SUMMARY}" | (grep "Deprecated APIs: " || true))
426426
427-
TOTAL_APIS=$(echo "$TOTAL_APIS" | | (grep -oE '[0-9]+' || true))
428-
COVERED_APIS=$(echo "$COVERED_APIS" | | (grep -oE '[0-9]+' || true))
427+
TOTAL_APIS=$(echo "$TOTAL_APIS" | (grep -oE '[0-9]+' || true))
428+
COVERED_APIS=$(echo "$COVERED_APIS" | (grep -oE '[0-9]+' || true))
429429
COVERAGE=$(echo "$COVERAGE" | (grep -oE '[0-9]+%' || true))
430-
DEPRECATED_APIS=$(echo "$DEPRECATED_APIS" | | (grep -oE '[0-9]+' || true))
430+
DEPRECATED_APIS=$(echo "$DEPRECATED_APIS" | (grep -oE '[0-9]+' || true))
431431
432432
echo "Total APIs: $TOTAL_APIS"
433433
echo "Covered APIs: $COVERED_APIS"

.github/workflows/cloud-e2e-api.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,10 +301,10 @@ jobs:
301301
COVERAGE=$(echo "${API_COVERAGE_SUMMARY}" | (grep "Coverage: " || true))
302302
DEPRECATED_APIS=$(echo "${API_COVERAGE_SUMMARY}" | (grep "Deprecated APIs: " || true))
303303
304-
TOTAL_APIS=$(echo "$TOTAL_APIS" | | (grep -oE '[0-9]+' || true))
305-
COVERED_APIS=$(echo "$COVERED_APIS" | | (grep -oE '[0-9]+' || true))
304+
TOTAL_APIS=$(echo "$TOTAL_APIS" | (grep -oE '[0-9]+' || true))
305+
COVERED_APIS=$(echo "$COVERED_APIS" | (grep -oE '[0-9]+' || true))
306306
COVERAGE=$(echo "$COVERAGE" | (grep -oE '[0-9]+%' || true))
307-
DEPRECATED_APIS=$(echo "$DEPRECATED_APIS" | | (grep -oE '[0-9]+' || true))
307+
DEPRECATED_APIS=$(echo "$DEPRECATED_APIS" | (grep -oE '[0-9]+' || true))
308308
309309
echo "Total APIs: $TOTAL_APIS"
310310
echo "Covered APIs: $COVERED_APIS"

0 commit comments

Comments
 (0)