1 2 3 4 5 6 7
#!/usr/bin/env bash # run — execute entry point; dispatches by VERB_LAYER to run.d/ layer. set -euo pipefail DIR="$(dirname "${BASH_SOURCE[0]}")/run.d" LAYER="${VERB_LAYER:-}" [[ -n "$LAYER" && -f "$DIR/$LAYER" ]] && exec "$DIR/$LAYER" "$@" exec "$DIR/l1" "$@"