Files
gen1recomp/scripts/play.sh
2026-07-17 20:30:02 -04:00

12 lines
243 B
Bash
Executable File

#!/usr/bin/env bash
# One-shot: full setup, then launch the game (macOS-friendly).
#
# Usage: scripts/play.sh [--rom /path/to/pokemon-red.gb]
set -euo pipefail
HERE="$(cd "$(dirname "$0")" && pwd)"
"$HERE/setup.sh" "$@"
exec "$HERE/run.sh"