1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-16 08:16:12 +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 set -e
## test doc external links ## test doc external links
echo "------------------------"
echo "checking external links"
find . -type f -iname '*.md' | while read -r line; do find . -type f -iname '*.md' | while read -r line; do
./scripts/check_links.py "${line}" ./scripts/check_links.py "${line}"
done done
@@ -23,6 +25,8 @@ if [ "$r" != "0" ]; then
exit 1 exit 1
fi fi
echo "------------------------"
echo "checking internal links"
find . -type f -iname '*.md' | while read -r line; do find . -type f -iname '*.md' | while read -r line; do
remark -f -u validate-links "${line}" remark -f -u validate-links "${line}"
done done