#!/usr/bin/env bash # Compatibility wrapper around the repo-root launcher. set -euo pipefail ROOT="$(cd "$(dirname "$0")" && pwd)" PORT="${ESPPORT:-${1:-}}" if [ -n "$PORT" ]; then exec "$ROOT/../start-firmware.sh" --port "$PORT" --flash-only fi exec "$ROOT/../start-firmware.sh" --flash-only