mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
1885087e56
Former-commit-id: 6f8698e345
10 lines
180 B
Bash
10 lines
180 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Compress png files in ./docs/src
|
|
|
|
[[ -d "./docs" ]] || (echo "Folder ./docs not found" && exit 1)
|
|
|
|
for file in ./docs/src/*/*.png; do
|
|
optipng "$file"
|
|
done
|