Skip to content

Commit ff42f31

Browse files
authored
Merge pull request #848 from heroku/cleanup-output
download get-pip silently
2 parents 7a431ee + 09b5fe4 commit ff42f31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/steps/python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ fi
101101
# https://github.com/pypa/get-pip
102102
GETPIP="https://lang-python.s3.amazonaws.com/etc/get-pip.py"
103103

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

0 commit comments

Comments
 (0)