1
0
mirror of https://github.com/dokku/buildpack-nginx.git synced 2024-08-27 19:06:05 +00:00
buildpack-nginx/bin/detect
2014-11-06 17:29:41 -05:00

10 lines
100 B
Bash
Executable File

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