Merge branch v2.5 into master

This commit is contained in:
kevinpollet 2021-10-06 11:55:12 +02:00
commit 32340252b2
No known key found for this signature in database
GPG key ID: 0C9A5DDD1B292453
39 changed files with 413 additions and 318 deletions

View file

@ -7,7 +7,7 @@ while IFS='' read -r line; do files+=("$line"); done < <(git ls-files "${SCRIPT_
errors=()
for f in "${files[@]}"; do
# we use source text here so we also check spelling of variable names
failedSpell=$(misspell -source=text "$f")
failedSpell=$(misspell -source=text -i "internetbs" "$f")
if [ "$failedSpell" ]; then
errors+=( "$failedSpell" )
fi