1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-09-21 11:56:02 +00:00
buildpack-nginx/bin/detect
Jose Diaz-Gonzalez c50c220ba4 chore: run shfmt
2022-09-10 17:13:33 -04:00

12 lines
207 B
Bash
Executable File

#!/usr/bin/env bash
# bin/detect <build-dir> <cache-dir>
set -eo pipefail
[[ $TRACE ]] && set -x
# Exit early if app is clearly not an nginx app
if [[ ! -f "$1/.static" ]]; then
exit 1
fi
echo ".static"