From 09d3f9f2e8479ca40ca5fc287cb293c24fc0492b Mon Sep 17 00:00:00 2001 From: bpatel Date: Mon, 29 Mar 2021 10:39:16 -0700 Subject: [PATCH] greater than 0 --- bin/appinspect.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/appinspect.sh b/bin/appinspect.sh index 143f1a0c99..7c9769ffbe 100755 --- a/bin/appinspect.sh +++ b/bin/appinspect.sh @@ -43,7 +43,7 @@ do curl -s --location --request GET https://appinspect.splunk.com/v1/app/report/$REQUEST_ID --header "Authorization: bearer $APPINSPECT_TOKEN" --header 'Content-Type: text/html' -o report/appinspect_report.html FAILS=$(curl -s --location --request GET https://appinspect.splunk.com/v1/app/report/$REQUEST_ID --header "Authorization: bearer $APPINSPECT_TOKEN" --header 'Content-Type: application/json' | jq -r '.summary | .failure') ERRORS=$(curl -s --location --request GET https://appinspect.splunk.com/v1/app/report/$REQUEST_ID --header "Authorization: bearer $APPINSPECT_TOKEN" --header 'Content-Type: application/json' | jq -r '.summary | .error') - if [ $FAILS -gt 1 -o $ERRORS -gt 1 ] + if [ $FAILS -gt 0 -o $ERRORS -gt 0 ] then echo "ERROR appinspect had $FAILS failures and or $ERRORS errors, see summary report under job artifacts for details" exit 1