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