From bf0aecce00af8fe323c09857cf24620d0f096da4 Mon Sep 17 00:00:00 2001 From: kennytm Date: Thu, 1 Nov 2018 15:30:30 +0800 Subject: [PATCH] Make sure the installed `awscli` is found on macOS. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 990cac4dbe98b..3d8918095accb 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.