Skip to content

Commit ce99315

Browse files
authored
Merge pull request circleci#1058 from circleci/build-on-2.0-patch
Fix awscli installation
2 parents 6fc2829 + 37f7e62 commit ce99315

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
command: sudo apt-get update && sudo apt-get install python-dev
1818
- run:
1919
name: Install awscli
20-
command: wget https://bootstrap.pypa.io/get-pip.py && sudo python get-pip.py && pip install --upgrade --user awscli
20+
command: wget https://bootstrap.pypa.io/get-pip.py && sudo python get-pip.py && sudo pip install awscli
2121
- run:
2222
name: Install Ruby dependencies
2323
command: bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3
@@ -54,4 +54,4 @@ jobs:
5454
aws s3 sync jekyll/_site/docs s3://circle-production-static-site/docs/ --delete
5555
else
5656
echo "Not master branch so not deploying"
57-
fi
57+
fi

0 commit comments

Comments
 (0)