mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
877a0924c1
* Shrank large SVG's using Inkscape 'Optimized SVG' * Added pngcrush script to 'make icons' * Ran 'make icons'
8 lines
150 B
Bash
8 lines
150 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [[ -z $1 ]]; then
|
|
echo "You must supply a root folder!"
|
|
exit 1
|
|
fi
|
|
|
|
find "$1" -iname '*png' -exec pngcrush -ow -brute {} \; |