this shoudl be better

This commit is contained in:
Lucas Gravley 2020-07-21 08:23:32 -05:00
parent 1fe8fb5431
commit dabf5e25c0
2 changed files with 11 additions and 6 deletions

View file

@ -871,6 +871,11 @@ Footer() {
echo "Reports generated in folder ${REPORT_OUTPUT_FOLDER}" echo "Reports generated in folder ${REPORT_OUTPUT_FOLDER}"
fi fi
####################################################
# Need to clean up the lanuage array of duplicates #
####################################################
UNIQUE_LINTED_ARRAY=($(echo "${LINTED_LANGUAGES_ARRAY[@]}" | tr ' ' '\n' | sort -u | tr '\n' ' '))
############################## ##############################
# Prints for errors if found # # Prints for errors if found #
############################## ##############################
@ -899,7 +904,7 @@ Footer() {
###################################### ######################################
# Check if we validated the langauge # # Check if we validated the langauge #
###################################### ######################################
if [[ "${LINTED_LANGUAGES_ARRAY[@]}" =~ "${LANGUAGE}" ]]; then if [[ "${UNIQUE_LINTED_ARRAY[@]}" =~ "${LANGUAGE}" ]]; then
CallStatusAPI "$LANGUAGE" "success" CallStatusAPI "$LANGUAGE" "success"
fi fi
fi fi

View file

@ -34,11 +34,6 @@ function LintCodebase() {
PRINT_ARRAY+=("----------------------------------------------") PRINT_ARRAY+=("----------------------------------------------")
PRINT_ARRAY+=("----------------------------------------------") PRINT_ARRAY+=("----------------------------------------------")
#################################
# Add the language to the array #
#################################
LINTED_LANGUAGES_ARRAY+=("$FILE_TYPE")
##################################### #####################################
# Validate we have linter installed # # Validate we have linter installed #
##################################### #####################################
@ -173,6 +168,11 @@ function LintCodebase() {
echo "---------------------------" echo "---------------------------"
echo "File:[$FILE]" echo "File:[$FILE]"
#################################
# Add the language to the array #
#################################
LINTED_LANGUAGES_ARRAY+=("$FILE_TYPE")
#################### ####################
# Set the base Var # # Set the base Var #
#################### ####################