From 127563b874d515238e70b5e565b6efe9377e8d27 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:43:27 +0200 Subject: [PATCH] Make sure .cue file is removed after compression Fixes #978 --- functions/compression.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/compression.sh b/functions/compression.sh index 15455e09..3a5ce393 100644 --- a/functions/compression.sh +++ b/functions/compression.sh @@ -39,7 +39,7 @@ compress_game() { rm -f "$file_path/$line" done < <(printf '%s\n' "$cue_bin_files") log i "Removing file $(realpath "$file")" - rm -f $(realpath "$file") + rm -f "$(realpath "$file")" else log i "Removing file $(realpath "$file")" rm -f "$(realpath "$file")"