From 4c5d01b9ebe737252d9bec5241b892787120cb73 Mon Sep 17 00:00:00 2001 From: victor Date: Tue, 26 Nov 2024 19:15:53 +0100 Subject: [PATCH] fixed path with empty spaces on writeCsv --- depFiles/ripCD.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/depFiles/ripCD.sh b/depFiles/ripCD.sh index 62e41b2..fe3b9c1 100755 --- a/depFiles/ripCD.sh +++ b/depFiles/ripCD.sh @@ -66,7 +66,7 @@ writeCsv(){ if [ ! -e ${CSVFILE} ]; then touch ${CSVFILE} fi - grep -qF -- ${DISCID} ${CSVFILE} || echo ""${DISCID}","${PERFORMER}","${ALBUM_TITLE}","${YEAR}","${DISCNUMBER}"" >> ${CSVFILE} + grep -qF -- ${DISCID} ${CSVFILE} || echo ""${DISCID}","${PERFORMER}","${ALBUM_TITLE}","${YEAR}","${DISCNUMBER}"" >> "${CSVFILE}" } writeTOC(){