#!/usr/bin/env bash
set -euo pipefail

if [[ -x "scripts/agent/log-limitation.sh" ]]; then
  exec bash scripts/agent/log-limitation.sh "$@"
fi

echo "[mosaic] Missing scripts/agent/log-limitation.sh in $(pwd)" >&2
exit 1
