1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-09-19 19:06:04 +00:00
buildpack-nginx/bin/detect
2013-08-18 10:50:20 -07:00

10 lines
97 B
Bash
Executable File

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