Spellcheck travis task will fail (#557)

This commit is contained in:
Pavel Lobashov 2019-05-06 15:15:09 +03:00 committed by Alexey Golubev
parent 4a2d46f974
commit 5d9cd5b483

View file

@ -17,4 +17,4 @@ jobs:
- npm install -g markdownlint-cli
- markdownlint CHANGELOG.md
- stage: spellcheck
script: cat CHANGELOG.md | aspell --lang=en --encoding=utf-8 --personal=./.aspell.en.pws list
script: if [[ $(cat CHANGELOG.md | aspell --lang=en --encoding=utf-8 --personal=./.aspell.en.pws list | wc -l) -ne 0 ]]; then exit 1 ; fi