Skip to content

Commit

Permalink
🐞 fix(Spell check): Handle files with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
raxhvl committed Apr 4, 2024
1 parent 84c4fc2 commit e90fded
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
id: find_typos
run: |
echo "Checking for typos..."
# https://unix.stackexchange.com/a/9500
IFS=$'\n'
set -f
for file in $(find . -name "*.md" ); do
output="$(aspell --lang=en_US --mode=markdown --home-dir=. --personal=wordlist.txt --ignore-case=true --camel-case list <$file)"
echo "$output"
Expand Down

0 comments on commit e90fded

Please sign in to comment.