#!/bin/bash # Install the Teletype Games store into this machine's RetroArch. # # bash <(curl -fsSL https://git.teletypegames.org/tools/ttg-retroarch-store/raw/branch/master/install.sh) # # All the work is done by the engine's installer; this only says which store. set -euo pipefail ENGINE_RAW_BASE="${ENGINE_RAW_BASE:-https://git.teletypegames.org/tools/warp-engine-retroarch-store/raw/branch/master}" export STORE_CONFIG="${STORE_CONFIG:-https://git.teletypegames.org/tools/ttg-retroarch-store/raw/branch/master/config.json}" curl -fsSL "$ENGINE_RAW_BASE/install.sh" | bash