summaryrefslogtreecommitdiffstats
path: root/src/doc/book/ci/validate.sh
blob: 9d65bc1614bb3cd9201f3c15877eb289def9314d (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

set -eu

for file in src/*.md ; do
    echo Checking references in "$file"
    cargo run --quiet --bin link2print < "$file" > /dev/null
done