blob: 673aa0c10698290d746c5ea2c44d543a5971dc28 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
#
set -eo pipefail
find ./ -type f -name '*.png' -not -path '*/.git/*' -exec sh -c 'cwebp $1 -o "${1%.png}.webp"' _ {} \;
find . -type f -not -path '*/.git/*' \( ! -iname "pre-commit" \) -exec sed -i -e 's/\.png/\.webp/g' {} \;
|