Skip to content

Commit

Permalink
Merge pull request #848 from heroku/cleanup-output
Browse files Browse the repository at this point in the history
download get-pip silently
  • Loading branch information
CaseyFaist authored Sep 12, 2019
2 parents 7a431ee + 09b5fe4 commit ff42f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/steps/python
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ fi
# https://github.com/pypa/get-pip
GETPIP="https://lang-python.s3.amazonaws.com/etc/get-pip.py"

if ! curl "${GETPIP}" -o "$ROOT_DIR/get-pip.py"; then
if ! curl -s "${GETPIP}" -o "$ROOT_DIR/get-pip.py" &> /dev/null; then
mcount "failure.python.get-pip"
echo "Failed to pull down get-pip"
exit 1
Expand Down

0 comments on commit ff42f31

Please sign in to comment.