buildpack-nginx/bin/detect

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