1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2025-06-25 18:10:47 +00:00

Initial version

This commit is contained in:
rhy-jot
2013-08-16 23:41:19 -07:00
commit 070274df73
6 changed files with 118 additions and 0 deletions

9
bin/detect Normal file
View File

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