Fix failed certs check

This commit is contained in:
Jonatan Castro 2021-01-12 18:26:02 +11:00
parent 0a31a759e6
commit 45f6349538

View File

@ -16,6 +16,9 @@ jobs:
if ! echo "$OUTPUT" | grep "Expired: 0" ; then if ! echo "$OUTPUT" | grep "Expired: 0" ; then
.circleci/slack-message.sh "*Checked SSL Certificates*: Expired :x:" "#FF0000" .circleci/slack-message.sh "*Checked SSL Certificates*: Expired :x:" "#FF0000"
fi fi
if ! echo "$OUTPUT" | grep "Failed: 0" ; then
.circleci/slack-message.sh "*Checked SSL Certificates*: Failed :x:" "#FF0000"
fi
if ! echo "$OUTPUT" | grep "Warning: 0" ; then if ! echo "$OUTPUT" | grep "Warning: 0" ; then
.circleci/slack-message.sh "*Checked SSL Certificates*: Warnings :warning:" "#FF0000" .circleci/slack-message.sh "*Checked SSL Certificates*: Warnings :warning:" "#FF0000"
fi fi