From 27a07fcb7011f4af8d7a5cc8b0703e519369f5e2 Mon Sep 17 00:00:00 2001 From: icenine451 Date: Tue, 25 Mar 2025 17:09:41 -0400 Subject: [PATCH] Fix issue where files were incorrectly compressed when only compressing some files --- tools/configurator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configurator.sh b/tools/configurator.sh index 9a7cba9d..8d59cf46 100755 --- a/tools/configurator.sh +++ b/tools/configurator.sh @@ -874,7 +874,7 @@ configurator_compress_multiple_games_dialog() { if [[ $rc == 0 && -n "$choice" ]]; then while IFS="^" read -r game comp; do # Split Zenity choice string into compatible pairs (game^format) games_to_compress+=("$game"^"$comp") - done < "$compressible_games_list_file" + done <<< "$choice" elif [[ -n "$choice" ]]; then games_to_compress=("${all_compressible_games[@]}") else