17 lines
292 B
Bash
Executable File
17 lines
292 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
# md check
|
|
find src -name '*.md' -a \! -name SUMMARY.md |
|
|
while read -r file; do
|
|
if ! grep -q '('"${file#src/}"')' src/SUMMARY.md; then
|
|
echo "Error: $file missing from SUMMARY.md"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
|
|
make -j"$(nproc)" test
|