From 6fd8849424a59e54529bab53cc9e5bbc963ce123 Mon Sep 17 00:00:00 2001 From: Thedro Neely Date: Sat, 17 Aug 2019 22:30:37 -0400 Subject: bootstrap/helpers/update-thumbnails: Compress thumbnails when updating Improve execution --- bootstrap/helpers/update-thumbnails | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'bootstrap') diff --git a/bootstrap/helpers/update-thumbnails b/bootstrap/helpers/update-thumbnails index 7175794..604bc0f 100755 --- a/bootstrap/helpers/update-thumbnails +++ b/bootstrap/helpers/update-thumbnails @@ -1,6 +1,9 @@ #!/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/*; +cd images || exit 1; +mogrify -path thumbnails -auto-orient -quiet -thumbnail x222 $(find . -maxdepth 1 -type f -mtime -1); +mogrify -format png -quiet thumbnails/*.jpg; +rm -f thumbnails/*.jpg +find thumbnails -name '*.png' -mtime -1 -exec pngquant --quality 85 --ext .png --force {} \; +touch .update-thumbnails; echo Image Thumbnails in "'$(pwd)'" updated.; -- cgit v1.2.3