From 1799d0fd118d8651e9f01c24c8b48d7b6aa06ed4 Mon Sep 17 00:00:00 2001
From: Jan-Christoph Borchardt <hey@jancborchardt.net>
Date: Tue, 8 Jan 2019 17:03:33 +0100
Subject: [PATCH] Switch around syntax of scour command for SVG image
 optimization

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
---
 build/image-optimization.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/image-optimization.sh b/build/image-optimization.sh
index cf82e120dcd..a1be5d22ce1 100755
--- a/build/image-optimization.sh
+++ b/build/image-optimization.sh
@@ -7,7 +7,7 @@ jpegoptim --strip-all *.jpg;
 for svg in `ls *.svg`;
 do
     mv $svg $svg.opttmp;
-    scour -i $svg.opttmp -o $svg --create-groups --enable-id-stripping --enable-comment-stripping --shorten-ids --remove-metadata --strip-xml-prolog --no-line-breaks;
+    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 */`;
-- 
GitLab