buildpack-nginx/bin/detect

10 lines
100 B
Plaintext
Raw Normal View History

2013-08-17 06:41:19 +00:00
#!/usr/bin/env bash
set -e
2014-11-06 22:29:41 +00:00
if [[ -f $1/.static ]]; then
echo ".static"
2013-08-17 06:41:19 +00:00
exit 0
else
exit 1
fi