From 8386cd8dddc556b4dfeff940d1022804d8d4923a Mon Sep 17 00:00:00 2001 From: victor Date: Tue, 26 Nov 2024 19:20:51 +0100 Subject: [PATCH] fix empty spaces 2 --- depFiles/ripCD.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/depFiles/ripCD.sh b/depFiles/ripCD.sh index fe3b9c1..0120ba1 100755 --- a/depFiles/ripCD.sh +++ b/depFiles/ripCD.sh @@ -62,11 +62,11 @@ checkEncDir(){ } writeCsv(){ - CSVFILE=${VOLUME}/${RIP_DIR}/albums.csv + CSVFILE="${VOLUME}/${RIP_DIR}/albums.csv" 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(){