aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/helpers/update-thumbnails
blob: 7175794265aa30f101ea1c4739f996e6c37cf8cd (plain)
1
2
3
4
5
6
#!/bin/bash

cd images/ && touch .update-thumbnails || exit 1;
mogrify -path thumbnails/ -auto-orient -quiet -thumbnail x222 $(find . -maxdepth 1 -type f -mtime -1) || echo 'No Images Updated.' && exit 1;
rename jpg png thumbnails/*;
echo Image Thumbnails in "'$(pwd)'" updated.;