1 Commits
2.3.2 ... 2.3.3

Author SHA1 Message Date
Tyler Akins
54195a6c6e Fixing test script to return 0 on success 2021-11-25 16:02:21 -06:00

View File

@@ -40,4 +40,6 @@ done
echo "" echo ""
echo "Pass: $PASS" echo "Pass: $PASS"
echo "Fail: $FAIL" echo "Fail: $FAIL"
[[ $FAIL -gt 0 ]] && exit 1 if [[ $FAIL -gt 0 ]]; then
exit 1
fi