Mother2GbaTranslation/docker-build-rom-script

12 lines
275 B
PowerShell
Executable File

#!/bin/pwsh
$Env:PATH += ":/root/.dotnet"
echo "Starting to build tools"
./build-tools.ps1
echo "Starting to build rom"
./build.ps1
echo "Copying rom to output"
cp ./bin/m12.gba /opt/out
echo "Build successful please review the folder "./out/m12.gba" for the resulted rom"