diff options
| author | MarcoFalke <[email protected]> | 2017-09-10 18:29:23 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-09-10 18:29:30 +0200 |
| commit | b9ca77863bb3a814759c0a908f494394d085718b (patch) | |
| tree | a5d5a7921eabb0017127aae86a6259c828255aff | |
| parent | Merge #10516: Backports for 0.14.3 (diff) | |
| parent | travis: filter out pyenv (diff) | |
| download | discoin-b9ca77863bb3a814759c0a908f494394d085718b.tar.xz discoin-b9ca77863bb3a814759c0a908f494394d085718b.zip | |
Merge #11296: [0.14] travis: filter out pyenv (Cory Fields)
a4a0adbc7 travis: filter out pyenv (Cory Fields)
Pull request description:
This fixes the travis issues on the 0.14 branch
Tree-SHA512: 302495d9d5eb554e32e6aa3a788416395d8efeaee153dc2ad9425e2762ac83e36a0a5f128d16098147e95d610dd2fbc7aae70e39a11f54ed421abd38693378d5
| -rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index ccd249092..632261fbb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,6 +38,7 @@ env: before_install: - export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g") + - export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/pyenv/d' | tr "\n" ":" | sed "s|::|:|g") install: - if [ -n "$PPA" ]; then travis_retry sudo add-apt-repository "$PPA" -y; fi - if [ -n "$DPKG_ADD_ARCH" ]; then sudo dpkg --add-architecture "$DPKG_ADD_ARCH" ; fi |