Skip to content

Commit ce7fc95

Browse files
committed
fix danger condition
1 parent e8c80a6 commit ce7fc95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/scripts/ci/check-build-and-verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ FINDBUGS_STATUS=
3232
VERIFY_STATUS=
3333

3434
DANGER_STATUS=skip
35-
if [ "${SPRING_PROFILES_ACTIVE:-}" != 'travis' -o "${TRAVIS_PULL_REQUEST:-false}" = 'false' ]; then
35+
if [ "${SPRING_PROFILES_ACTIVE:-}" != 'travis' -a "${TRAVIS_PULL_REQUEST:-false}" = 'false' ]; then
3636
DANGER_STATUS=
3737
fi
3838

0 commit comments

Comments
 (0)