Merge pull request #50 from outis1one/claude/fix-mvt-video-playback-NhFjs

4-seasons: fix silent exit on clean days (set -e + && gotcha)
This commit is contained in:
Outis
2026-04-23 09:53:55 -04:00
committed by GitHub
+2 -2
View File
@@ -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."