tag_audio: skip dirs which are probably not albums
This commit is contained in:
parent
0cd6ddd669
commit
f1ed0fa6a0
|
@ -9,6 +9,12 @@ function _tag_audio_extra_tags() {
|
||||||
}
|
}
|
||||||
|
|
||||||
for dir in ${@}; do
|
for dir in ${@}; do
|
||||||
|
[[ -d ${dir} ]] || continue
|
||||||
|
if [[ "${dir}" == "singles" ]] || [[ "${dir}" == "misc" ]]; then
|
||||||
|
print -Pu2 "%B%F{yellow}skipping ${dir}%f%b"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
picard ${dir}
|
picard ${dir}
|
||||||
mksmol ${dir}
|
mksmol ${dir}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user