mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-11-05 11:48:42 +00:00
10 lines
97 B
Plaintext
10 lines
97 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
if [[ -f $1/.nginx ]]; then
|
||
|
echo "nginx"
|
||
|
exit 0
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|