12 lines
261 B
Bash
12 lines
261 B
Bash
|
#!/bin/bash
|
||
|
echo "[*] Pulling down latest savefile..."
|
||
|
git pull
|
||
|
echo "[*] Launching game!"
|
||
|
mgba leafgreen.gba
|
||
|
echo "[*] Creating commit..."
|
||
|
git add *
|
||
|
git commit -am "[auto] [leafgreen] Automatic save-file update"
|
||
|
echo "[*] Saving..."
|
||
|
git push
|
||
|
echo "[*] Saved!"
|