13 lines
358 B
Bash
13 lines
358 B
Bash
#!/bin/bash
|
|
|
|
ENDPOINT="https://git.sassysalamander.net/wytch/recalbox-savesync/archive/main.tar.gz"
|
|
cd /recalbox/share/system
|
|
curl -L -o savesync.tar.gz "$ENDPOINT"
|
|
|
|
tar -xvf recalbox.tar.gz
|
|
rm recalbox.tar.gz
|
|
cd recalbox
|
|
cp *.ash /recalbox/share/userscripts/
|
|
mkdir -p /recalbox/share/system/config/savesync
|
|
cp *.conf /recalbox/share/system/config/savesync/
|