add warning:

This commit is contained in:
Lucas Gravley 2020-10-14 10:31:55 -05:00
parent 9ff430fe83
commit d9b3473867

View file

@ -89,6 +89,16 @@ function BuildFileList() {
fatal "[${RAW_FILE_ARRAY[*]}]"
fi
##########################################################################
# Check to make sure the raw file array is not empty or throw a warning! #
##########################################################################
if [ ${#RAW_FILE_ARRAY[@]} -eq 0 ]; then
###############################
# No files were found to lint #
###############################
warn "No files were found in the GITHUB_WORKSPACE:[${GITHUB_WORKSPACE}] to lint!"
fi
################################################
# Iterate through the array of all files found #
################################################