Skip to content
Snippets Groups Projects
Commit 77ddd7c8 authored by Marc Abramowitz's avatar Marc Abramowitz
Browse files

Set xtrace if $BUILDPACK_XTRACE set

For debugging or for folks who are curious about how the buildpack
works.
parent c53d54f2
No related branches found
No related tags found
No related merge requests found
...@@ -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
......
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