mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 08:21:02 +02:00
16 lines
375 B
PowerShell
16 lines
375 B
PowerShell
# One-shot: full setup, then launch the game (Windows).
|
|
#
|
|
# Usage: powershell -ExecutionPolicy Bypass -File scripts\play.ps1 [-Rom red.gb]
|
|
|
|
param(
|
|
[string]$Rom = $env:ROM_PATH
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
& (Join-Path $PSScriptRoot 'setup.ps1') -Rom $Rom
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
|
|
|
& (Join-Path $PSScriptRoot 'run.ps1')
|
|
exit $LASTEXITCODE
|