1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-07-05 01:34:13 +00:00
buildpack-nginx/bin/detect
Jose Diaz-Gonzalez 1b0c929144 Simplify detection
2016-09-20 01:00:53 -06:00

11 lines
172 B
Bash
Executable File

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