From 2338c2c98ed3e43c9affd508bd1314600993f262 Mon Sep 17 00:00:00 2001 From: Sean Killeen Date: Thu, 18 Jun 2020 15:22:13 -0400 Subject: [PATCH] Parse DEFAULT_ERRORS variable --- lib/linter.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/lib/linter.sh b/lib/linter.sh index 92897eec..4188f6af 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -1096,6 +1096,30 @@ GetValidationInfo() # Set the value ANSIBLE_DIRECTORY="$TEMP_ANSIBLE_DIRECTORY" 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 #