forked from platformio/platformio-core
Fix sudo command for OSX CI
This commit is contained in:
@ -20,7 +20,7 @@ matrix:
|
||||
|
||||
install:
|
||||
- git submodule update --init --recursive
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo python -c "$(curl -fsSL https://bootstrap.pypa.io/get-pip.py)"; fi
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -fsSL https://bootstrap.pypa.io/get-pip.py | sudo python; fi
|
||||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo pip install -U tox; else pip install -U tox; fi
|
||||
|
||||
# ChipKIT issue: install 32-bit support for GCC PIC32
|
||||
|
Reference in New Issue
Block a user