Skip to content

Commit 2865c88

Browse files
committed
Linting
1 parent ded8625 commit 2865c88

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.evergreen/execute-tests.sh

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@ ATTEMPT=1
1818
EXIT_CODE=0
1919
set +e
2020

21-
while [ $ATTEMPT -le $MAX_ATTEMPTS ]; do
21+
while [ $ATTEMPT -le $MAX_ATTEMPTS ]; do
2222
bash ${ROOT_DIR}/${DIR}/run.sh
23-
23+
2424
EXIT_CODE=$?
2525

26-
if [ $EXIT_CODE -eq 0 ]; then
27-
break
28-
else
29-
echo "Tests failed on attempt $ATTEMPT of $MAX_ATTEMPTS..."
30-
((ATTEMPT++))
31-
fi
32-
done
26+
if [ $EXIT_CODE -eq 0 ]; then
27+
break
28+
else
29+
echo "Tests failed on attempt $ATTEMPT of $MAX_ATTEMPTS..."
30+
((ATTEMPT++))
31+
fi
32+
done
3333

34-
if [ $EXIT_CODE -ne 0 ]; then
34+
if [ $EXIT_CODE -ne 0 ]; then
3535
echo "Tests failed after $MAX_ATTEMPTS attempts."
36-
fi
36+
fi
3737
exit $EXIT_CODE

0 commit comments

Comments
 (0)