#!/usr/bin/env bash # Thin wrapper — delegates to canonical docker-doctor in learning_ai_common_plat. # Do not edit logic here; edit the canonical script. set -euo pipefail HERE="$(cd "$(dirname "$0")" && pwd)" REPO_ROOT="$(cd "$HERE/.." && pwd)" CANONICAL="$REPO_ROOT/../learning_ai_common_plat/scripts/docker-doctor.sh" if [ ! -x "$CANONICAL" ]; then echo "✗ Canonical docker-doctor not found at $CANONICAL" >&2 echo " Clone learning_ai_common_plat as a sibling directory." >&2 exit 2 fi exec bash "$CANONICAL" --repo "$REPO_ROOT" "$@"