Make verify-cloudformation job fail when issues are found

This commit is contained in:
Peter Rifel 2020-10-28 21:01:22 -05:00
parent f466403912
commit a240507fce
No known key found for this signature in database
GPG Key ID: BC6469E5B16DB2B6
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ RC=$?
if [ $RC != 0 ]; then
echo -e "\nCloudformation linting failed\n"
exit 0 # TODO: exit $RC once issues have been addressed to make this a blocking check
exit $RC
else
echo -e "\nCloudformation linting succeeded\n"
fi