mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
Fix issue where files were incorrectly compressed when only compressing some files
This commit is contained in:
parent
52b34c41f2
commit
27a07fcb70
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue