mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 08:21:02 +02:00
12 lines
243 B
Bash
Executable File
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"
|