Skip to content
Snippets Groups Projects
Unverified Commit e49b6c57 authored by Joas Schilling's avatar Joas Schilling
Browse files

Don't error when the directory is broken

parent f354a4f1
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
function recursive_optimize_images() {
cd "$1":
cd "$1" || return
# Optimize all JPGs and PNGs
optipng -o6 -strip all *.png;
jpegoptim --strip-all *.jpg;
optipng -o6 -strip all *.png
jpegoptim --strip-all *.jpg
# Optimize all SVGs
for svg in *.svg;
for svg in *.svg
do
mv $svg $svg.opttmp;
scour --create-groups \
......@@ -19,8 +19,8 @@ function recursive_optimize_images() {
--strip-xml-prolog \
--no-line-breaks \
-i $svg.opttmp \
-o $svg;
done;
-o $svg
done
# Remove temporary SVGs
rm *.opttmp
......@@ -32,7 +32,7 @@ function recursive_optimize_images() {
recursive_optimize_images "$dir"
cd ..
fi
done;
done
}
recursive_optimize_images ../
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