mirror of
https://github.com/dokku/buildpack-nginx.git
synced 2024-12-27 06:15:25 +00:00
10 lines
97 B
Bash
Executable File
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
|