mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
debugging step
This commit is contained in:
@@ -7,8 +7,11 @@ puts-step "Installing dependencies with pip"
|
||||
set +e
|
||||
/app/.heroku/python/bin/pip install -r requirements.txt --exists-action=w --src=./.heroku/src --allow-all-external --disable-pip-version-check --no-cache-dir | cleanup | log-output | indent
|
||||
set -e
|
||||
PIP_STATUS="$?"
|
||||
|
||||
if [[ "$?" ]]; then
|
||||
echo "$PIP_STATUS"
|
||||
|
||||
if [[ "$PIP_STATUS" ]]; then
|
||||
echo "an error occurred."
|
||||
show-warnings
|
||||
exit 1
|
||||
|
||||
Reference in New Issue
Block a user