fixed path with empty spaces on writeCsv
This commit is contained in:
@ -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(){
|
||||||
|
|||||||
Reference in New Issue
Block a user