From 994294d62a27d04311cfa11e56b0e36e724ceb00 Mon Sep 17 00:00:00 2001 From: icenine451 Date: Tue, 25 Mar 2025 17:26:07 -0400 Subject: [PATCH] Remove screenshots_folder from core userdata backup --- functions/other_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/other_functions.sh b/functions/other_functions.sh index 387b2b27..f1878e27 100644 --- a/functions/other_functions.sh +++ b/functions/other_functions.sh @@ -450,7 +450,7 @@ backup_retrodeck_userdata() { elif [[ "$backup_type" == "core" ]]; then for folder_name in "${!config_paths[@]}"; do - if [[ $folder_name =~ (saves_folder|states_folder|logs_folder|screenshots_folder) ]]; then # Only include these paths + if [[ $folder_name =~ (saves_folder|states_folder|logs_folder) ]]; then # Only include these paths path_value="${config_paths[$folder_name]}" if [[ -e "$path_value" ]]; then paths_to_backup+=("$path_value")