Files
buildpack-nginx/bin/detect
T
2014-11-03 23:36:08 -05:00

10 lines
98 B
Bash
Executable File

#!/usr/bin/env bash
set -e
if [[ -f $1/.nginx ]]; then
echo ".nginx"
exit 0
else
exit 1
fi