Files
stack/v1/packages/mosaic/framework/tools/_scripts/mosaic-log-limitation
T

10 lines
221 B
Bash
Executable File

#!/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