mirror of
https://bitbucket.org/smil3y/ariya-icons.git
synced 2025-02-23 02:22:46 +00:00
17 lines
299 B
Bash
Executable file
17 lines
299 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
catchlarger() {
|
|
if [ "$?" != "98" ];then
|
|
exit $?
|
|
fi
|
|
}
|
|
|
|
for i in $(find -type f -name '*.png');do
|
|
pngquant -o "$i-optimized" --skip-if-larger -- "$i" || catchlarger
|
|
if [ -e "$i-optimized" ];then
|
|
rm -f "$i"
|
|
mv "$i-optimized" "$i"
|
|
fi
|
|
done
|