Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

Commit 87c4a4a

Browse files
committed
bash syntax polishing
1 parent a74a8db commit 87c4a4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
printf "$f${printTail:0:-${#f}}"
3030
bash "$f" -H
3131
status=$?
32-
if [ $status -ne 0 ]; then
32+
if [ "$status" -ne 0 ]; then
3333
errcount="$(($errcount+1))"
3434
fi
3535
done
36-
if [ $errcount -ne 0 ]; then
36+
if [ "$errcount" -ne 0 ]; then
3737
>&2 echo "Oh no! $errcount tests failed"
3838
exit 1
3939
fi

0 commit comments

Comments
 (0)