From dd84550d46346c156dda935560709af75ce9ceee Mon Sep 17 00:00:00 2001 From: Dana Merrick Date: Thu, 3 Sep 2020 19:23:24 -0400 Subject: [PATCH] Honoring DISABLE_ERRORS --- lib/linter.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/linter.sh b/lib/linter.sh index 08edb0e6..5a9ec0da 100755 --- a/lib/linter.sh +++ b/lib/linter.sh @@ -988,6 +988,11 @@ CallStatusAPI() { else # Failure MESSAGE="${FAIL_MSG}" + + # make sure we honor DISABLE_ERRORS + if [ "${DISABLE_ERRORS}" == "true" ]; then + STATUS="success" + fi fi ##########################################################