#!/usr/bin/env bash
# bin/detect <build-dir>

build_dir=$1

if [ ! -d "$build_dir/public" ]; then
    exit 1
fi

echo 'static buildpack'
exit 0
