Skip to content

Commit

Permalink
fixes #13: Fix bash warning about unary.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsqd committed Jul 30, 2024
1 parent 5310add commit ed699dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/validate-feature-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
vendor/bin/robo validate:coding-standards || status2=$? || status2=0
# Exit with a non-zero status if any command failed
if [ $status1 -ne 0 ] || [ $status2 -ne 0 ] || [ $status3 -ne 0 ]; then
if [ "$status1" -ne 0 ] || [ "$status2" -ne 0 ] || [ "$status3" -ne 0 ]; then
exit 1
fi
Expand Down

0 comments on commit ed699dc

Please sign in to comment.