1
0
Fork 0

Update go-acme/lego to v4.5.0

This commit is contained in:
Ludovic Fernandez 2021-10-01 09:20:08 +02:00 committed by GitHub
parent c99221fa34
commit 89001ae9a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 106 additions and 81 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