Skip to content

Commit

Permalink
Fix: correct bash syntaxt for if-statement
Browse files Browse the repository at this point in the history
  • Loading branch information
w-ensink committed Nov 11, 2024
1 parent 46ba75a commit da6b0b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/status-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ jobs:
steps:
- name: Check integration test results
run: |
if [ "${{ needs.integration-test-ios.result }}" == "failure" || "${{ needs.integration-test-ios.result }}" == "cancelled" ]; then
if [ "${{ needs.integration-test-ios.result }}" == "failure" ] || [ "${{ needs.integration-test-ios.result }}" == "cancelled" ]; then
echo "One or more integration tests failed."
exit 1
else
Expand Down

0 comments on commit da6b0b1

Please sign in to comment.