Parse DEFAULT_ERRORS variable

This commit is contained in:
Sean Killeen 2020-06-18 15:22:13 -04:00 committed by GitHub
parent 4d2b216eaf
commit 2338c2c98e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1097,6 +1097,30 @@ GetValidationInfo()
ANSIBLE_DIRECTORY="$TEMP_ANSIBLE_DIRECTORY" ANSIBLE_DIRECTORY="$TEMP_ANSIBLE_DIRECTORY"
fi fi
###############################
# Get the disable errors flag #
###############################
if [ -z "$DISABLE_ERRORS" ]; then
##################################
# No flag passed, set to default #
##################################
DISABLE_ERRORS="$DEFAULT_DISABLE_ERRORS"
fi
###############################
# Convert string to lowercase #
###############################
DSIABLE_ERRORS=$(echo "$DISABLE_ERRORS" | awk '{print tolower($0)}')
############################
# Set to false if not true #
############################
if [ "$DISABLE_ERRORS" != "true" ]; then
ACTIONS_RUNNER_DEBUG="false"
fi
############################ ############################
# Get the run verbose flag # # Get the run verbose flag #
############################ ############################