Skip to content

Commit

Permalink
fix install script
Browse files Browse the repository at this point in the history
  • Loading branch information
gagelarsen committed Apr 16, 2019
1 parent f7e31c3 commit b5c5ecf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@ set -x

if [[ "$(uname -s)" == 'Darwin' ]]; then
brew update || brew update
brew outdated pyenv || brew upgrade pyenv
# brew outdated pyenv || brew upgrade pyenv
brew unlink pyenv
brew install pyenv --head
brew install pyenv-virtualenv
brew install cmake || true

if which pyenv > /dev/null; then
eval "$(pyenv init -)"
fi

pyenv install 2.7.10
pyenv virtualenv 2.7.10 conan
pyenv install 2.7.13
pyenv virtualenv 2.7.13 conan
pyenv rehash
pyenv activate conan
fi
Expand Down

0 comments on commit b5c5ecf

Please sign in to comment.