Skip to content
Snippets Groups Projects
Commit c93265b7 authored by Jan Frenzel's avatar Jan Frenzel
Browse files

Removed doc.zih.tu-dresden.de/README.md from check-links.sh because of

blocking merge-request error (#183).
parent 47813831
No related branches found
No related tags found
3 merge requests!392Merge preview into contrib guide for browser users,!366Merge preview into main,!358Added pattern for links in grep-forbidden-words.sh and some description
...@@ -48,10 +48,12 @@ echo "" ...@@ -48,10 +48,12 @@ echo ""
for f in $files; do for f in $files; do
if [ "${f: -3}" == ".md" ]; then if [ "${f: -3}" == ".md" ]; then
# do not check links for deleted files # do not check links for deleted files
if [ -e $f ]; then if [ "$f" != "doc.zih.tu-dresden.de/README.md" ]; then
echo "Checking links for $f" if [ -e $f ]; then
if ! $mlc -q -p "$f"; then echo "Checking links for $f"
any_fails=true if ! $mlc -q -p "$f"; then
any_fails=true
fi
fi fi
fi fi
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment