debugging step

This commit is contained in:
2015-12-03 13:03:09 -05:00
parent 911140b3ac
commit b7ecb49a96
+4 -1
View File
@@ -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