mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 07:20:20 +08:00
9 lines
154 B
Bash
9 lines
154 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
for file in src/*.md ; do
|
|
echo Checking references in "$file"
|
|
cargo run --quiet --bin link2print < "$file" > /dev/null
|
|
done
|