Change messaging.

This commit is contained in:
Hyperling 2025-03-19 08:28:47 -07:00
parent ab58617815
commit 85e0a5be7d

View File

@ -214,15 +214,15 @@ function migrate_music {
# Check that the file has proper data.
skip=false
if [[ -z "$grandparent" ]]; then
echo "ERROR: Could not find Artist information."
echo "*** WARNING: Could not find Artist information."
skip="true"
fi
if [[ -z "$parent" ]]; then
echo "ERROR: Could not find Album or Year information."
echo "*** WARNING: Could not find Album or Year information."
skip="true"
fi
if [[ -z "$track" && -z "$title" ]]; then
echo "ERROR: Could not find Track or Title information."
echo "*** WARNING: Could not find Track or Title information."
skip="true"
fi