1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-09-13 17:06:03 +00:00
buildpack-nginx/bin/detect

10 lines
98 B
Plaintext
Raw Normal View History

2013-08-17 06:41:19 +00:00
#!/usr/bin/env bash
set -e
if [[ -f $1/.nginx ]]; then
2014-11-04 04:36:08 +00:00
echo ".nginx"
2013-08-17 06:41:19 +00:00
exit 0
else
exit 1
fi