File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments