From 4651ff5a50d1fb0e88adbbf2adaa734bca3b4c07 Mon Sep 17 00:00:00 2001
From: Joas Schilling <coding@schilljs.com>
Date: Tue, 21 Apr 2020 13:30:53 +0200
Subject: [PATCH] Make the script better readable

Signed-off-by: Joas Schilling <coding@schilljs.com>
---
 build/image-optimization.sh | 44 +++++++++++++++++++++++++------------
 1 file changed, 30 insertions(+), 14 deletions(-)

diff --git a/build/image-optimization.sh b/build/image-optimization.sh
index a1be5d22ce1..65a5bb46362 100755
--- a/build/image-optimization.sh
+++ b/build/image-optimization.sh
@@ -1,20 +1,36 @@
 #!/usr/bin/env bash
 
 function recursive_optimize_images() {
-cd $1;
-optipng -o6 -strip all *.png;
-jpegoptim --strip-all *.jpg;
-for svg in `ls *.svg`;
-do
-    mv $svg $svg.opttmp;
-    scour --create-groups --enable-id-stripping --enable-comment-stripping --shorten-ids --remove-metadata --strip-xml-prolog --no-line-breaks  -i $svg.opttmp -o $svg;
-done;
-rm *.opttmp
-for dir in `ls -d */`;
-do
-    recursive_optimize_images $dir;
-    cd ..;
-done;
+	cd "$1":
+
+	# Optimize all JPGs and PNGs
+	optipng -o6 -strip all *.png;
+	jpegoptim --strip-all *.jpg;
+
+	# Optimize all SVGs
+	for svg in `ls *.svg`;
+	do
+		mv $svg $svg.opttmp;
+		scour --create-groups \
+			--enable-id-stripping \
+			--enable-comment-stripping \
+			--shorten-ids \
+			--remove-metadata \
+			--strip-xml-prolog \
+			--no-line-breaks  \
+			-i $svg.opttmp \
+			-o $svg;
+	done;
+
+	# Remove temporary SVGs
+	rm *.opttmp
+
+	# Check all subfolders
+	for dir in `ls -d */`;
+	do
+			recursive_optimize_images $dir;
+			cd ..;
+	done;
 }
 
 recursive_optimize_images ../
-- 
GitLab