summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@samsung.com>2017-12-08 15:53:10 +0300
committerAlin Gabriel Serdean <aserdean@ovn.org>2017-12-12 02:01:46 +0200
commit6625e434219d1c5b2c40af51825138be707b2af6 (patch)
treea0871613cb879fcf18e0daaf0d4dae753bd06888 /.travis
parent25540a777ff6c81ff71ace04ffabfd0df93e5e2d (diff)
downloadopenvswitch-6625e434219d1c5b2c40af51825138be707b2af6.tar.gz
travis: Use pip2 instead of pip for OSX build.
xcode8.3 is a new default image for OS X on Travis-CI, but it does not have 'pip': pip install --user six ./.travis/osx-prepare.sh: line 3: pip: command not found 'pip2' or 'pip3' should be used explicitly instead: https://github.com/travis-ci/travis-ci/issues/8829 Signed-off-by: Ilya Maximets <i.maximets@samsung.com> Acked-by: Alin Gabriel Serdean <aserdean@ovn.org> Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org>
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/osx-prepare.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/osx-prepare.sh b/.travis/osx-prepare.sh
index 1f144fb41..4725fd829 100755
--- a/.travis/osx-prepare.sh
+++ b/.travis/osx-prepare.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -ev
-pip install --user six
-pip install --user --upgrade docutils
+pip2 install --user six
+pip2 install --user --upgrade docutils
brew update || true
brew uninstall libtool && brew install libtool || true