Commit b7ecb49a authored by Kenneth Reitz's avatar Kenneth Reitz

debugging step

parent 911140b3
...@@ -7,8 +7,11 @@ puts-step "Installing dependencies with pip" ...@@ -7,8 +7,11 @@ puts-step "Installing dependencies with pip"
set +e 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 /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 set -e
PIP_STATUS="$?"
if [[ "$?" ]]; then echo "$PIP_STATUS"
if [[ "$PIP_STATUS" ]]; then
echo "an error occurred." echo "an error occurred."
show-warnings show-warnings
exit 1 exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment