fixed path with empty spaces on writeCsv

This commit is contained in:
2024-11-26 19:15:53 +01:00
parent b78970de87
commit 4c5d01b9eb

View File

@ -66,7 +66,7 @@ writeCsv(){
if [ ! -e ${CSVFILE} ]; then if [ ! -e ${CSVFILE} ]; then
touch ${CSVFILE} touch ${CSVFILE}
fi 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(){ writeTOC(){