6 lines
287 B
Bash
Executable File
6 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find ./ -type f -name '*.png' -not -path '*/.git/*' -exec sh -c 'cwebp -lossless $1 -o "${1%.png}.webp"' _ {} \;
|
|
find . -type f -not -path '*/.git/*' -exec sed -i -e 's/\.png/\.webp/g' {} \;
|
|
hugo -s . -d /var/www/fr.yams.media/ --minify --cleanDestinationDir --gc --verbose
|