RETROARCH: restored a line in post_update instead of retroarch_updater

This commit is contained in:
XargonWan 2025-02-05 10:03:00 +09:00
parent 1f45f0656a
commit 9e5eece8f1
2 changed files with 1 additions and 3 deletions

View file

@ -979,9 +979,6 @@ convert_to_markdown() {
retroarch_updater(){ retroarch_updater(){
log i "Running RetroArch updater" log i "Running RetroArch updater"
# Copy shaders from the application share directory to the RetroArch configuration directory
cp -rf /app/share/libretro/shaders /var/config/retroarch/ && log d "RetroArch shaders updated correctly"
# Synchronize cores from the application share directory to the RetroArch cores directory # Synchronize cores from the application share directory to the RetroArch cores directory
rsync -rlD --mkpath "/app/share/libretro/cores/" "/var/config/retroarch/cores/" && log d "RetroArch cores updated correctly" rsync -rlD --mkpath "/app/share/libretro/cores/" "/var/config/retroarch/cores/" && log d "RetroArch cores updated correctly"

View file

@ -124,6 +124,7 @@ prepare_component() {
dir_prep "$bios_folder" "/var/config/retroarch/system" dir_prep "$bios_folder" "/var/config/retroarch/system"
dir_prep "$rdhome/logs/retroarch" "/var/config/retroarch/logs" dir_prep "$rdhome/logs/retroarch" "/var/config/retroarch/logs"
create_dir /var/config/retroarch/shaders/ create_dir /var/config/retroarch/shaders/
cp -rf /app/share/libretro/shaders /var/config/retroarch/
dir_prep "$rdhome/shaders/retroarch" "/var/config/retroarch/shaders" dir_prep "$rdhome/shaders/retroarch" "/var/config/retroarch/shaders"
cp -fv $config/retroarch/retroarch.cfg /var/config/retroarch/ cp -fv $config/retroarch/retroarch.cfg /var/config/retroarch/
cp -fv $config/retroarch/retroarch-core-options.cfg /var/config/retroarch/ cp -fv $config/retroarch/retroarch-core-options.cfg /var/config/retroarch/