Files
buildpack-nginx/bin/detect
2014-11-06 17:29:41 -05:00

10 líneas
100 B
Bash
Archivo Ejecutable

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