Merge pull request #1109 from pulumi/1107_toolchain_failure

Fix master failures (pulumi/pulumi#1107)
This commit is contained in:
Joe Duffy 2018-04-02 14:44:00 -07:00 committed by GitHub
commit 0810798ca9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ nvm install v6.10.2
go get -v github.com/wadey/gocovmerge
echo "installing virtualenv ${VIRTUALENV_VERSION}"
pip install "virtualenv==${VIRTUALENV_VERSION}"
sudo pip install "virtualenv==${VIRTUALENV_VERSION}"
pip install --user "virtualenv==${VIRTUALENV_VERSION}"
echo "installing AWS cli ${AWSCLI_VERSION}"
@ -63,6 +63,9 @@ nvm install v6.10.2
pip install --user "wheel==${WHEEL_VERSION}" "twine==${TWINE_VERSION}"
)
# If the sub shell failed, bail out now.
[ "$?" -eq 0 ] || exit 1
# By default some tools are not on the PATH, let's fix that
# On OSX, the user folder that `pip` installs tools to is not on the
@ -74,6 +77,3 @@ fi
# Add yarn to the $PATH
export PATH=$HOME/.yarn/bin:$PATH
# If the sub shell failed, bail out now.
[ "$?" -eq 0 ] || exit 1