From 465a4b6744238a8771d4350c1f030e917790310e Mon Sep 17 00:00:00 2001 From: Dragoon Dorise Date: Wed, 25 Dec 2024 23:36:10 +0100 Subject: [PATCH] old save function back --- functions/helperFunctions.sh | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/functions/helperFunctions.sh b/functions/helperFunctions.sh index 7cbed7e35..e6b854e45 100644 --- a/functions/helperFunctions.sh +++ b/functions/helperFunctions.sh @@ -429,26 +429,30 @@ function getReleaseURLGH(){ } function linkToSaveFolder(){ - local emu=$1 # /saves/$emu/ - local folderName=$2 # states or saves - local path=$3 # original location - - mkdir -p "$path" + local emu=$1 + local folderName=$2 + local path=$3 - # Es el path un simlink? - if [ ! -L "$path" ]; then - #We delete the old symlink and move the saves - if [ -L "$savesPath/$emu/$folderName" ]; then + if [ ! -d "$savesPath/$emu/$folderName" ]; then + if [ ! -L "$savesPath/$emu/$folderName" ]; then + mkdir -p "$savesPath/$emu" setMSG "Linking $emu $folderName to the Emulation/saves folder" - rm -rf "$savesPath/$emu/$folderName" - mv "$path" "$savesPath/$emu/$folderName" - ln -snv "$savesPath/$emu/$folderName" "$path" + mkdir -p "$path" + ln -snv "$path" "$savesPath/$emu/$folderName" fi else - setMSG "Rebuilding Link $emu $folderName to the Emulation/saves folder" - mkdir -p "$savesPath/$emu/$folderName" - unlink "$savesPath/$emu/$folderName" - ln -snv "$savesPath/$emu/$folderName" "$path" + if [ ! -L "$savesPath/$emu/$folderName" ]; then + echo "$savesPath/$emu/$folderName is not a link. Please check it." + else + if [ $(readlink $savesPath/$emu/$folderName) == $path ]; then + echo "$savesPath/$emu/$folderName is already linked." + echo " Target: $(readlink $savesPath/$emu/$folderName)" + else + echo "$savesPath/$emu/$folderName not linked correctly." + unlink "$savesPath/$emu/$folderName" + linkToSaveFolder "$emu" "$folderName" "$path" + fi + fi fi }