#!/usr/bin/env bash # muda-audit.sh — Weekly waste audit wrapper # Runs scripts/muda_audit.py from the repo root. # Designed for cron or Gitea Actions. set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" REPO_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)" cd "$REPO_ROOT" # Ensure python3 is available if ! command -v python3 >/dev/null 2>&1; then echo "ERROR: python3 not found" >&2 exit 1 fi # Run the audit python3 "${REPO_ROOT}/scripts/muda_audit.py" "$@"