roms/leafgreen/launch.sh

12 lines
261 B
Bash
Raw Normal View History

2022-07-30 02:00:33 +00:00
#!/bin/bash
echo "[*] Pulling down latest savefile..."
git pull
2022-07-30 02:01:47 +00:00
echo "[*] Launching game!"
2022-07-30 02:00:33 +00:00
mgba leafgreen.gba
echo "[*] Creating commit..."
git add *
git commit -am "[auto] [leafgreen] Automatic save-file update"
2022-07-30 02:00:33 +00:00
echo "[*] Saving..."
git push
echo "[*] Saved!"