diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2017-12-01 03:03:26 -0500 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-12-02 11:53:11 +0100 |
commit | 8eff32f0bf8bbcfaf34b8b78f268321d0446caee (patch) | |
tree | 1f63de446fe99c4c355ae010e6606ddec64fc91e | |
parent | b7f5345976127f1af2ccad431f6b60d5402e1bde (diff) | |
download | curl-8eff32f0bf8bbcfaf34b8b78f268321d0446caee.tar.gz |
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
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |