From: Jay Satiro Date: Fri, 1 Dec 2017 08:03:26 +0000 (-0500) Subject: travis: use pip2 instead of pip X-Git-Tag: curl-7_58_0~117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8eff32f0bf8bbcfaf34b8b78f268321d0446caee;p=curl travis: use pip2 instead of pip .. since now mac osx image expects pip2 or pip3, and doesn't know pip: 0.01s$ pip install --user cpp-coveralls /Users/travis/.travis/job_stages: line 57: pip: command not found Ref: https://github.com/travis-ci/travis-ci/issues/8829 Closes https://github.com/curl/curl/pull/2133 --- diff --git a/.travis.yml b/.travis.yml index 7e2be4a59..d2924556a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -91,7 +91,7 @@ matrix: env: T=fuzzer install: - - pip install --user cpp-coveralls + - if [ "$T" = "coverage" ]; then pip2 install --user cpp-coveralls; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update > /dev/null; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew reinstall libtool > /dev/null; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install rtmpdump libssh2 c-ares libmetalink libressl nghttp2 libmetalink; fi