mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 14:10:56 -05:00
actually the right way
This commit is contained in:
parent
64a79027b4
commit
eb2f960a3f
1 changed files with 4 additions and 4 deletions
|
@ -364,14 +364,14 @@ function TestCodebase()
|
|||
# Increment the error count
|
||||
(("ERRORS_FOUND_$FILE_TYPE++"))
|
||||
# Increment counter that check was ran
|
||||
(("$TESTS_RAN++"))
|
||||
((TESTS_RAN++))
|
||||
else
|
||||
###########
|
||||
# Success #
|
||||
###########
|
||||
echo " - File:[$FILE_NAME] was linted with [$LINTER_NAME] successfully"
|
||||
# Increment counter that check was ran
|
||||
(("$TESTS_RAN++"))
|
||||
((TESTS_RAN++))
|
||||
fi
|
||||
else
|
||||
#######################################
|
||||
|
@ -391,14 +391,14 @@ function TestCodebase()
|
|||
# Increment the error count
|
||||
(("ERRORS_FOUND_$FILE_TYPE++"))
|
||||
# Increment counter that check was ran
|
||||
(("$TESTS_RAN++"))
|
||||
((TESTS_RAN++))
|
||||
else
|
||||
###########
|
||||
# Success #
|
||||
###########
|
||||
echo " - File:[$FILE_NAME] failed test case with [$LINTER_NAME] successfully"
|
||||
# Increment counter that check was ran
|
||||
(("$TESTS_RAN++"))
|
||||
((TESTS_RAN++))
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue