Skip to content

Commit

Permalink
tolerate nonzero exit codes from cpanm on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuels committed Aug 20, 2018
1 parent 37becd4 commit c282145
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -49,7 +49,8 @@ install:
- mkdir ~/geckodriver_$GECKODRIVER_VERSION;
- wget -O - https://github.com/mozilla/geckodriver/releases/download/v0.19.1/geckodriver-v$GECKODRIVER_VERSION-linux64.tar.gz | tar -xzf - -C ~/geckodriver_$GECKODRIVER_VERSION;
- export PATH=$PATH:$HOME/geckodriver_$GECKODRIVER_VERSION
- cpanm --notest GD::Image Text::Markdown DateTime JSON
# cpanm exits with nonzero exit code on os x sometimes?
- cpanm --notest GD::Image Text::Markdown DateTime JSON || true
# only init the python virtualenv if it did not show up in our build cache
- if [[ ! -f ~/python/bin/activate ]]; then virtualenv ~/python; fi
- source ~/python/bin/activate
Expand Down

0 comments on commit c282145

Please sign in to comment.