Commit 77ddd7c8 authored by Marc Abramowitz's avatar Marc Abramowitz

Set xtrace if $BUILDPACK_XTRACE set

For debugging or for folks who are curious about how the buildpack
works.
parent c53d54f2
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
# Fail fast and fail hard. # Fail fast and fail hard.
set -eo pipefail set -eo pipefail
[ "$BUILDPACK_XTRACE" ] && set -o xtrace
# Prepend proper path for virtualenv hackery. This will be deprecated soon. # Prepend proper path for virtualenv hackery. This will be deprecated soon.
export PATH=:/usr/local/bin:$PATH export PATH=:/usr/local/bin:$PATH
......
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