Skip to content
Snippets Groups Projects
Unverified Commit c3e2a68b authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #13429 from nextcloud/optimization-syntax

Switch around syntax of scour command for SVG image optimization
parents b35db6c7 1799d0fd
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ jpegoptim --strip-all *.jpg; ...@@ -7,7 +7,7 @@ jpegoptim --strip-all *.jpg;
for svg in `ls *.svg`; for svg in `ls *.svg`;
do do
mv $svg $svg.opttmp; 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; done;
rm *.opttmp rm *.opttmp
for dir in `ls -d */`; for dir in `ls -d */`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment