mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 03:38:43 +00:00
Add trace mode
This commit is contained in:
parent
b69c1f3854
commit
fb081cabb2
@ -1,8 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
# bin/compile <build-dir> <cache-dir>
|
||||
|
||||
set -e
|
||||
set -o pipefail
|
||||
set -eo pipefail; [[ $TRACE ]] && set -x
|
||||
|
||||
NGINX_VERSION="1.10.1"
|
||||
NGINX_TARBALL="nginx-${NGINX_VERSION}.tar.gz"
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
# bin/detect <build-dir> <cache-dir>
|
||||
set -e
|
||||
set -eo pipefail; [[ $TRACE ]] && set -x
|
||||
|
||||
# Exit early if app is clearly not an nginx app
|
||||
if [[ ! -f $1/.static ]]; then
|
||||
|
@ -1,5 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
# bin/release <build-dir>
|
||||
set -eo pipefail; [[ $TRACE ]] && set -x
|
||||
|
||||
cat <<EOF
|
||||
---
|
||||
|
Loading…
Reference in New Issue
Block a user