mirror of
https://github.com/rust-lang/book.git
synced 2026-03-31 04:09:14 -04:00
8 lines
153 B
Bash
Executable File
8 lines
153 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
for file in src/*.md ; do
|
|
echo Checking references in "$file"
|
|
cargo run --quiet --bin link2print < "$file" > /dev/null
|
|
done |