hunting a bug

This commit is contained in:
Lucas Gravley 2020-07-06 08:29:36 -05:00
parent e4752580dd
commit bf045db303
2 changed files with 6 additions and 7 deletions

View file

@ -81,11 +81,6 @@ function BuildFileList() {
echo "----------------------------------------------"
echo "Files that have been modified in the commit(s):"
for FILE in "${RAW_FILE_ARRAY[@]}"; do
##############
# Print file #
##############
echo "File:[$FILE]"
###########################
# Get the files extension #
###########################
@ -93,6 +88,11 @@ function BuildFileList() {
# reverse it back, substitute to lowercase
FILE_TYPE=$(basename "$FILE" | rev | cut -f1 -d'.' | rev | awk '{print tolower($0)}')
##############
# Print file #
##############
echo "File:[$FILE], File_type:[$FILE_TYPE]"
#########
# DEBUG #
#########

View file

@ -451,8 +451,7 @@ DetectOpenAPIFile() {
}
################################################################################
#### Function DetectARMFile ####################################################
DetectARMFile()
{
DetectARMFile() {
################
# Pull in vars #
################