Make alias work on Travis for Mac OS

This commit is contained in:
Daniel Wang 2018-07-19 18:55:45 -04:00
parent 5e1db92102
commit dfa1995f5a
No known key found for this signature in database
GPG Key ID: 82968CE7F0EA634E
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ before_install:
- env
- rvm install ruby --latest
- gem install dropbox-deployment
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew bundle; alias python='python3'; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew bundle; shopt -s expand_aliases; alias python='python3'; fi
- eval "${MATRIX_EVAL}"
- python -c "import distutils.sysconfig as sysconfig; print(sysconfig.__file__)"