Skip to content
Snippets Groups Projects
Commit b990b7fb authored by Matthias Bernt's avatar Matthias Bernt
Browse files

debug

parent fe649a00
No related branches found
No related tags found
1 merge request!5Add spellcking
Pipeline #473036 failed
......@@ -43,7 +43,7 @@ aspell:
ERRORS=0
find . -name "*.md" -print0 | while IFS= read -r -d '' file; do
echo "Checking $file"
SPELL_OUTPUT=(aspell --lang=en --mode=markdown --add-wordlists=custom.dict list < "$file" | tee -a spelling | sort -u)
SPELL_OUTPUT=$(aspell --lang=en --mode=markdown --add-wordlists=custom.dict list < "$file" | tee -a spelling | sort -u)
if [ -n "$SPELL_OUTPUT" ]; then
echo "Spelling errors detected in $file"
echo "$SPELL_OUTPUT"
......
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