Skip to content
Snippets Groups Projects
Commit 9bebd22f authored by Andrew Newdigate's avatar Andrew Newdigate
Browse files

Merge branch 'fix-tflint' into 'main'

Fix: tflint failes due to missing semicolons

See merge request gitlab-com/gl-infra/common-ci-tasks!142
parents ed3f8b56 d59b31b4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -23,9 +23,9 @@ tflint:
done;
# tflint-reports/failed indicates a linter failure
- if [ -f "${CI_PROJECT_DIR}/tflint-reports/failed" ]; then
echo "Failures found in:"
cat "${CI_PROJECT_DIR}/tflint-reports/failed"
exit 1
echo "Failures found in:";
cat "${CI_PROJECT_DIR}/tflint-reports/failed";
exit 1;
fi
after_script: |
cat <<-EOD
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment