Merge "Handle additional reqs push failure as non failing"

This commit is contained in:
Jenkins 2014-04-24 07:03:58 +00:00 committed by Gerrit Code Review
commit c81cd88e4a

View File

@ -83,7 +83,7 @@ EOF
set +e set +e
OUTPUT=$(git review -t $TOPIC $BRANCH) OUTPUT=$(git review -t $TOPIC $BRANCH)
RET=$? RET=$?
[[ "$RET" -eq "0" || "$OUTPUT" =~ "no new changes" ]] [[ "$RET" -eq "0" || "$OUTPUT" =~ "no new changes" || "$OUTPUT" =~ "no changes made" ]]
SUCCESS=$? SUCCESS=$?
[[ "$SUCCESS" -eq "0" && "$ALL_SUCCESS" -eq "0" ]] [[ "$SUCCESS" -eq "0" && "$ALL_SUCCESS" -eq "0" ]]
ALL_SUCCESS=$? ALL_SUCCESS=$?