aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/helpers/update-thumbnails
blob: 7411230b8305945ba8ea5aafa292f6cd069d98ef (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh -eu
cd images || exit 1;
mogrify -path thumbnails -auto-orient -quiet -thumbnail x222 $(find . -maxdepth 1 -regex '.*\.\(jpg\|png\)' -type f -mmin -60);
mogrify -format png -quiet thumbnails/*.jpg || true;
rm -rf thumbnails/*.jpg;
find . -name '*.png' -mmin -60 -exec pngquant -v --quality 85 --ext .png --force {} \;
find . -name '*.jpg' -mmin -60 -exec jpegoptim -v -m 85 {} +
touch .update-thumbnails;
echo Image Thumbnails in "'$(pwd)'" updated.;