Merge pull request #848 from heroku/cleanup-output

download get-pip silently
This commit is contained in:
Casey
2019-09-12 16:17:11 -07:00
committed by GitHub
+1 -1
View File
@@ -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