actually the right way

This commit is contained in:
Lucas Gravley 2020-06-30 15:34:33 -05:00
parent 64a79027b4
commit eb2f960a3f

View file

@ -364,14 +364,14 @@ function TestCodebase()
# Increment the error count # Increment the error count
(("ERRORS_FOUND_$FILE_TYPE++")) (("ERRORS_FOUND_$FILE_TYPE++"))
# Increment counter that check was ran # Increment counter that check was ran
(("$TESTS_RAN++")) ((TESTS_RAN++))
else else
########### ###########
# Success # # Success #
########### ###########
echo " - File:[$FILE_NAME] was linted with [$LINTER_NAME] successfully" echo " - File:[$FILE_NAME] was linted with [$LINTER_NAME] successfully"
# Increment counter that check was ran # Increment counter that check was ran
(("$TESTS_RAN++")) ((TESTS_RAN++))
fi fi
else else
####################################### #######################################
@ -391,14 +391,14 @@ function TestCodebase()
# Increment the error count # Increment the error count
(("ERRORS_FOUND_$FILE_TYPE++")) (("ERRORS_FOUND_$FILE_TYPE++"))
# Increment counter that check was ran # Increment counter that check was ran
(("$TESTS_RAN++")) ((TESTS_RAN++))
else else
########### ###########
# Success # # Success #
########### ###########
echo " - File:[$FILE_NAME] failed test case with [$LINTER_NAME] successfully" echo " - File:[$FILE_NAME] failed test case with [$LINTER_NAME] successfully"
# Increment counter that check was ran # Increment counter that check was ran
(("$TESTS_RAN++")) ((TESTS_RAN++))
fi fi
fi fi
done done