mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
Fix compression logging handling spaces in files
This commit is contained in:
parent
d08d027db6
commit
2472254b09
|
@ -38,10 +38,10 @@ compress_game() {
|
|||
log i "Removing file $file_path/$line"
|
||||
rm -f "$file_path/$line"
|
||||
done < <(printf '%s\n' "$cue_bin_files")
|
||||
log i "Removing file $(realpath $file)"
|
||||
log i "Removing file $(realpath "$file")"
|
||||
rm -f $(realpath "$file")
|
||||
else
|
||||
log i "Removing file $(realpath $file)"
|
||||
log i "Removing file $(realpath "$file")"
|
||||
rm -f "$(realpath "$file")"
|
||||
fi
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue