1
0
mirror of https://github.com/ru-de/faq.git synced 2024-11-23 02:42:19 +00:00

fix exit code

This commit is contained in:
Evgeniy Sokolov 2018-05-05 22:14:10 +02:00
parent 0cf29782c4
commit 5014046051

View File

@ -32,13 +32,12 @@ curl -s https://api.github.com/repos/$TRAVIS_REPO_SLUG/pulls/$TRAVIS_PULL_REQUES
github_comments_diff -comments /tmp/comments.json -exists-comments /tmp/pr_comments.json > /tmp/send_comments.json github_comments_diff -comments /tmp/comments.json -exists-comments /tmp/pr_comments.json > /tmp/send_comments.json
OUTPUT=$(cat /tmp/comments.json | (! grep .)); OUTPUT=$(cat /tmp/comments.json | (! grep .));
OUTPUT_EXIT_CODE=$? EXIT_CODE=$?
if [ $OUTPUT_EXIT_CODE -ne 0 ]; then if [ $EXIT_CODE -ne 0 ]; then
cat /tmp/send_comments.json
echo $TRAVIS_REPO_SLUG $TRAVIS_PULL_REQUEST
github_comments_send -file /tmp/send_comments.json -repo $TRAVIS_REPO_SLUG -pr $TRAVIS_PULL_REQUEST github_comments_send -file /tmp/send_comments.json -repo $TRAVIS_REPO_SLUG -pr $TRAVIS_PULL_REQUEST
EXIT_CODE=1
fi fi
cat /tmp/comments.json
exit $EXIT_CODE exit $EXIT_CODE