1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 19:44:45 +00:00

verbosity

This commit is contained in:
deadc0de6
2023-05-09 22:31:28 +02:00
committed by deadc0de
parent 8c37479857
commit 31606969cc

View File

@@ -6,6 +6,8 @@
set -e
## test doc external links
echo "------------------------"
echo "checking external links"
find . -type f -iname '*.md' | while read -r line; do
./scripts/check_links.py "${line}"
done
@@ -23,6 +25,8 @@ if [ "$r" != "0" ]; then
exit 1
fi
echo "------------------------"
echo "checking internal links"
find . -type f -iname '*.md' | while read -r line; do
remark -f -u validate-links "${line}"
done