From e8a253db4fa6d3275f5ab4d05f2bd10673436cc2 Mon Sep 17 00:00:00 2001 From: icenine451 Date: Sat, 1 Oct 2022 17:00:37 -0400 Subject: [PATCH] Changed order of operations in update --- retrodeck.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/retrodeck.sh b/retrodeck.sh index 54043997..8bbdc10a 100644 --- a/retrodeck.sh +++ b/retrodeck.sh @@ -260,10 +260,6 @@ post_update() { # Resetting es_systems, now we need it but in the future I should think a better solution, maybe with sed cp -fv /app/retrodeck/es_settings.xml /var/config/emulationstation/.emulationstation/es_settings.xml - ra_init - standalones_init - tools_init - # Perform save and state migration if needed versionwheresaveschanged="0.4.5b" # Hardcoded break point between unsorted and sorted saves @@ -379,6 +375,10 @@ post_update() { echo "Version" $version "is after the save and state organization was changed, no need to sort again" fi + ra_init + standalones_init + tools_init + create_lock }