Skip to content
Snippets Groups Projects
Commit b7ecb49a authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

debugging step

parent 911140b3
No related branches found
Tags v131
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment