Skip to content

Commit d95a549

Browse files
committed
remove superfluous semicolon
1 parent d607fb8 commit d95a549

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
ERR_MSGS+=("::warning ::Analyses endpoint '$ANALYSIS' was not available: $REASON") # use GitHub's warning syntax
177177
done <<< `grep "FAILED.*\[" $LOGFILE | grep -v "%"` # get summary lines with failing tests, ignore progress lines
178178
cat $LOGFILE
179-
for ERR_MSG in "${ERR_MSGS[@]}"; do; echo $ERR_MSG; done # flag errors
179+
for ERR_MSG in "${ERR_MSGS[@]}"; do echo $ERR_MSG; done # flag errors
180180
if [ $ERR_COUNT>0 ]; then; exit 1; fi # fail if there were any errors
181181
- name: Setup Sauce Connect
182182
uses: saucelabs/sauce-connect-action@v3.0.0

0 commit comments

Comments
 (0)