diff options
author | Eric Engestrom <[email protected]> | 2019-10-18 15:03:43 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-10-18 15:27:37 +0100 |
commit | b0853a43da4dd266e49f777e2462eed56301a38f (patch) | |
tree | e65de7babd279814993359af6bf2647812390322 /.travis.yml | |
parent | a65192688457d1759bcf5ed840f82a863fa1cc67 (diff) |
travis: don't (re)install python
The new Mac OS X images apparently already have python2 and python3,
and `brew` considers asking to install something already installed
as a fatal error...
Signed-off-by: Eric Engestrom <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 97720cf118a..cc4d0b260d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,10 +19,10 @@ matrix: before_install: - HOMEBREW_NO_AUTO_UPDATE=1 brew install expat gettext - if test "x$BUILD" = xmeson; then - HOMEBREW_NO_AUTO_UPDATE=1 brew install python3 ninja; + HOMEBREW_NO_AUTO_UPDATE=1 brew install ninja; fi - if test "x$BUILD" = xscons; then - HOMEBREW_NO_AUTO_UPDATE=1 brew install python2 scons; + HOMEBREW_NO_AUTO_UPDATE=1 brew install scons; fi # Set PATH for homebrew pip3 installs |