Skip to content

Commit

Permalink
fix bash conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
tjcorr authored Oct 7, 2021
1 parent d35877b commit 09f8855
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# consider publishing error to PR
- name: Check Terraform Plan Exit Code
run: |
if [ ${{ steps.tf-plan.outputs.exitcode }} -eq 1 ] then
if [ ${{ steps.tf-plan.outputs.exitcode }} -eq 1 ]; then
echo Terraform Plan Failed!
exit 1
fi
Expand Down

0 comments on commit 09f8855

Please sign in to comment.