Skip to content

Commit a24a72a

Browse files
committed
Fix fmt
1 parent d483392 commit a24a72a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/ci-report/fetch_stats_from_ci.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ while read -r run; do
9797
fi
9898

9999
job_stats="$(
100-
grep "${job_name}.*${job_step_name}" "${job_log}" \
101-
| sed -E 's/.*[0-9-]{10}T[0-9:]{8}\.[0-9]*Z //' \
102-
| grep -E "^[{}\ ].*"
100+
grep "${job_name}.*${job_step_name}" "${job_log}" |
101+
sed -E 's/.*[0-9-]{10}T[0-9:]{8}\.[0-9]*Z //' |
102+
grep -E "^[{}\ ].*"
103103
)"
104104

105105
if ! jq -e . >/dev/null 2>&1 <<<"${job_stats}"; then

0 commit comments

Comments
 (0)