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

Added check for HPC-DA in grep-forbidden-words.sh.

parent daf5a490
No related branches found
No related tags found
3 merge requests!322Merge preview into main,!319Merge preview into main,!259Added checks for forbidden words (according to rules).
...@@ -47,6 +47,10 @@ for f in $files; do ...@@ -47,6 +47,10 @@ for f in $files; do
if ! grep -n -i 'hpc \+system' "$f"; then if ! grep -n -i 'hpc \+system' "$f"; then
any_fails=true any_fails=true
fi fi
echo "Checking wording of $f: hpc-da"
if ! grep -n -i 'hpc[ -]\+da\>' "$f"; then
any_fails=true
fi
fi fi
done done
......
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