Don't blindly delete the interim directory in case there are still files there.

This commit is contained in:
2025-06-17 14:05:42 -07:00
parent c2719ec081
commit 5f22dbaca4

View File

@ -300,7 +300,10 @@ done
echo "** Done converting any mp3s."
echo "** Done with INTERIM, deleting."
rm -rfv "$INT_DIR"
#rm -rfv "$INT_DIR"
find "$INT_DIR" -type d | sort -r | while read dir; do
rmdir -v "$dir"
done
echo "* Copying OLD files to NEW."
find "$OLD_DIR" -name "*".$EXT | sort | while read file; do