mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
more tests
This commit is contained in:
+3
-1
@@ -39,7 +39,9 @@ if [ ! "$SKIP_INSTALL" ]; then
|
||||
fi
|
||||
|
||||
# If Pip isn't up to date:
|
||||
if [ "$FRESH_PYTHON" ] || [[ ! $(pip --version) == *$PIP_VERSION* ]]; then
|
||||
if [ "$FRESH_PYTHON" ] || pip list -o --format=legacy --disable-pip-version-check | grep '^pip' 2>&1 /dev/null; then
|
||||
|
||||
# TODO: automatically detect pip is out of date with 'pip list -o --format=legacy --disable-pip-version-check | grep '^pip''
|
||||
WORKING_DIR=$(pwd)
|
||||
|
||||
TMPTARDIR=$(mktemp -d)
|
||||
|
||||
Reference in New Issue
Block a user