Name : Throw a skip on archive instead of a warn.

This commit is contained in:
Dmitry Voronin 2024-02-03 01:58:42 +03:00
parent 7e990a783d
commit 7af43e2edd

View file

@ -8,7 +8,7 @@ function name() {
process() { process() {
# Skip archive. # Skip archive.
if $(_is_archive ${target}); then if $(_is_archive ${target}); then
_warn "File is an archive, skip." _iterate_skip "File is an archive, skip."
return 0 return 0
fi fi
@ -49,7 +49,7 @@ function name_parse() {
process() { process() {
# Skip archive. # Skip archive.
if $(_is_archive ${target}); then if $(_is_archive ${target}); then
_warn "File is an archive, skip." _iterate_skip "File is an archive, skip."
return 0 return 0
fi fi