mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-01-09 02:45:38 +00:00
Merge pull request #979 from Cohee1207/bug/fix-cue-leftover
Make sure .cue file is removed after compression
This commit is contained in:
commit
102c72fd6c
|
@ -39,7 +39,7 @@ compress_game() {
|
||||||
rm -f "$file_path/$line"
|
rm -f "$file_path/$line"
|
||||||
done < <(printf '%s\n' "$cue_bin_files")
|
done < <(printf '%s\n' "$cue_bin_files")
|
||||||
log i "Removing file $(realpath "$file")"
|
log i "Removing file $(realpath "$file")"
|
||||||
rm -f $(realpath "$file")
|
rm -f "$(realpath "$file")"
|
||||||
else
|
else
|
||||||
log i "Removing file $(realpath "$file")"
|
log i "Removing file $(realpath "$file")"
|
||||||
rm -f "$(realpath "$file")"
|
rm -f "$(realpath "$file")"
|
||||||
|
|
Loading…
Reference in a new issue