From b7ecb49a96227cf0d23295673ef1bcea24bd6bfc Mon Sep 17 00:00:00 2001 From: Kenneth Reitz <me@kennethreitz.org> Date: Thu, 3 Dec 2015 13:03:09 -0500 Subject: [PATCH] debugging step --- bin/steps/pip-install | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/steps/pip-install b/bin/steps/pip-install index 2cb3bde6..4c633b05 100755 --- a/bin/steps/pip-install +++ b/bin/steps/pip-install @@ -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 -- GitLab