mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Merge pull request #848 from heroku/cleanup-output
download get-pip silently
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user