#!/usr/bin/env bash # bin/detect set -eo pipefail [[ $TRACE ]] && set -x # Exit early if app is clearly not an nginx app if [[ ! -f "$1/.static" ]]; then exit 1 fi echo ".static"