We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30302fe commit a18efb4Copy full SHA for a18efb4
garlicos-updater.sh
@@ -13,6 +13,10 @@ echo "# Downloading update package"
13
wget -O garlicOS.7z "$garlicOsDownloadPath" || exit
14
7z x garlicOS.7z || exit
15
16
+echo "# Updating misc"
17
+adb shell mount -o rw,remount /misc
18
+adb -s "$adbDeviceId" push --sync misc/* /misc/ || exit
19
+
20
echo "# Updating cfw"
21
adb -s "$adbDeviceId" shell cp -v /mnt/mmc/CFW/retroarch/.retroarch/retroarch.cfg /mnt/mmc/CFW/retroarch/.retroarch/current_retroarch.cfg || exit
22
adb -s "$adbDeviceId" push --sync roms/CFW /mnt/mmc/ || exit
@@ -40,10 +44,6 @@ if [[ -v saveDir ]]; then
40
44
fi
41
45
42
46
43
-echo "# Updating misc"
-mount -o rw,remount /misc
-adb -s "$adbDeviceId" shell cp -Rv misc/* /misc/ || exit
-
47
echo "# End"
48
49
0 commit comments