summaryrefslogtreecommitdiffstats
path: root/scripts/minify-images.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/minify-images.sh')
-rwxr-xr-xscripts/minify-images.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/minify-images.sh b/scripts/minify-images.sh
index 25a761f0b..a6ec71045 100755
--- a/scripts/minify-images.sh
+++ b/scripts/minify-images.sh
@@ -2,7 +2,7 @@
2 2
3# Note: This script is needed due to this bug: https://github.com/imagemin/imagemin/issues/348 3# Note: This script is needed due to this bug: https://github.com/imagemin/imagemin/issues/348
4# once the above is fixed, we should simply be able to specify the input directory where all image files are to be processed recursively 4# once the above is fixed, we should simply be able to specify the input directory where all image files are to be processed recursively
5FILES=`find . -name "*.jpg" -o -name "*.jpeg" -o -name "*.bmp" -o -name "*.png" -type f | GREP_OPTIONS= egrep -v "node_modules|internal-server|recipes"` 5FILES=`find . -name "*.jpg" -o -name "*.jpeg" -o -name "*.bmp" -o -name "*.png" -type f | GREP_OPTIONS= egrep -v "node_modules|recipes"`
6for file in $FILES; do 6for file in $FILES; do
7 echo "Minifying file: $file" 7 echo "Minifying file: $file"
8 size_before=`/usr/bin/du $file | cut -f1` 8 size_before=`/usr/bin/du $file | cut -f1`