1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2025-04-12 05:30:34 +00:00
2013-08-18 10:50:20 -07:00

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