diff --git a/4-seasons.sh b/4-seasons.sh index 9c56898..04aaba0 100755 --- a/4-seasons.sh +++ b/4-seasons.sh @@ -126,8 +126,8 @@ for img in "${all_images[@]}"; do fi images+=("$img") done -[ "$bad" -gt 0 ] && echo "WARNING: skipped $bad corrupt/empty frame(s) of ${#all_images[@]}" -[ "$grey" -gt 0 ] && echo "INFO: skipped $grey grey/uniform frame(s) (SEASONS_GREY_STDDEV_MIN=${GREY_MIN})" +[ "$bad" -gt 0 ] && echo "WARNING: skipped $bad corrupt/empty frame(s) of ${#all_images[@]}" || true +[ "$grey" -gt 0 ] && echo "INFO: skipped $grey grey/uniform frame(s) (SEASONS_GREY_STDDEV_MIN=${GREY_MIN})" || true if [ "${#images[@]}" -eq 0 ]; then echo "ERROR: no valid images remain after filtering — skipping $yesterday."