Skip to content

Commit

Permalink
ignore error from travis logs
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Sep 21, 2017
1 parent 57e367a commit ad7696a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/ci/snapshot.sh
Expand Up @@ -76,7 +76,10 @@ travis_log() {
printf >&2 " #$build_id\n"

printf >&2 "travis: showing logs for #$build_id.$job_id\n"
travis logs $build_id.$job_id
# ignore error from `travis logs`
# https://github.com/travis-ci/travis.rb/issues/541
# https://github.com/pusher-community/pusher-websocket-ruby/issues/51
travis logs $build_id.$job_id || :
}

create_snapshot_tag
Expand Down

0 comments on commit ad7696a

Please sign in to comment.