#!/usr/bin/env bash
set -euo pipefail
# Wrapper that invokes the full reproduction in bundle/repro/reproduction_steps.sh
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
TARGET="$SCRIPT_DIR/repro/reproduction_steps.sh"
if [[ ! -x "$TARGET" ]]; then
  echo "Missing target script: $TARGET" >&2
  exit 1
fi
exec "$TARGET" "$@"
