mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
18 lines
394 B
Bash
18 lines
394 B
Bash
|
#!/bin/sh
|
||
|
set -e -u
|
||
|
pwd="$(dirname "$0")"
|
||
|
output_dir="$1"
|
||
|
|
||
|
files_to_analyze() {
|
||
|
find "$output_dir" -type f -name '*.html' -o -name '*.svg' \
|
||
|
| grep -Ev '(bimi\.svg|search/index\.x?html)$'
|
||
|
}
|
||
|
|
||
|
# we skip the BIMI icon (VNU can't handle SVG 1.2) and the search page (it has raw templates).
|
||
|
vnu \
|
||
|
--stdout \
|
||
|
--format json \
|
||
|
--also-check-svg \
|
||
|
$(files_to_analyze) \
|
||
|
| sh "$pwd/filter-vnu.sh"
|