From 792a8d413f6c3729a6da471e3af76bc56046c3d1 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Fri, 15 Nov 2024 18:40:59 -0500 Subject: [PATCH] Add reminder for backing up deck and game directories before reinstalling for upgrade from beta78 and earlier. --- game-scripts/crazy-party-update.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/game-scripts/crazy-party-update.sh b/game-scripts/crazy-party-update.sh index 5b2cbee..d8faeb6 100755 --- a/game-scripts/crazy-party-update.sh +++ b/game-scripts/crazy-party-update.sh @@ -48,8 +48,10 @@ if [[ $oldVersion -le 78 ]]; then echo "Crazy party has to be reinstalled because it is now a 64 bit application." echo "Please run audiogame-manager -r to remove the old version." echo "You can then install it again with audiogame-manager -i" - echo "Don't forget to make a backup of your save.bin file." - find "${WINEPREFIX}/drive_c/Program Files" -name 'save.bin' 2> /dev/null + echo "Don't forget to make a backup of your save.bin file, custom card decks, and custom game lists." + find "${WINEPREFIX}/drive_c/Program Files" -type f -name 'save.bin' 2> /dev/null + find "${WINEPREFIX}/drive_c/Program Files" -type d -name 'deck' 2> /dev/null + find "${WINEPREFIX}/drive_c/Program Files" -type d -name 'game' 2> /dev/null fi if [[ $oldVersion -eq $newVersion ]]; then echo "Crazy Party is up to date."