diff options
| author | kennytm <kennytm@gmail.com> | 2018-11-01 22:54:16 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-11-01 22:54:16 +0800 |
| commit | aa525b39140d8945035ab41fb406f044952c459b (patch) | |
| tree | ba6d206f82cad5f8108b180903f5bc3fa3b1a6e6 | |
| parent | 8f4b86d1e7972e44662ef093610e59a6163e2c48 (diff) | |
| parent | a85467748f1f6b88d18d5b1f1a0611d8e27b8627 (diff) | |
| download | rust-aa525b39140d8945035ab41fb406f044952c459b.tar.gz rust-aa525b39140d8945035ab41fb406f044952c459b.zip | |
Rollup merge of #55573 - kennytm:macos-aws, r=alexcrichton
Make sure the `aws` executable is in $PATH on macOS Fixes #55571
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 990cac4dbe9..3d8918095ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -200,7 +200,7 @@ matrix: before_install: # We'll use the AWS cli to download/upload cached docker layers as well as # push our deployments, so download that here. - - pip install --user awscli; export PATH=$PATH:$HOME/.local/bin + - pip install --user awscli; export PATH=$PATH:$HOME/.local/bin:$HOME/Library/Python/2.7/bin/ - mkdir -p $HOME/rustsrc # FIXME(#46924): these two commands are required to enable IPv6, # they shouldn't exist, please revert once more official solutions appeared. |
