10 lines
221 B
Bash
Executable File
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
|