Changelog fixes (#1088)

* typo fix

* clean up changelog to match version tags
This commit is contained in:
Jonathan Wren 2020-11-21 11:47:30 -08:00 committed by GitHub
parent 514ee309b8
commit 142e6f597e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ jobs:
- name: Consistency check
run: |
if [[ $(grep '^# Changelog$' "$FILENAME") != 1 ]]; then
if [[ $(grep -c '^# Changelog$' "$FILENAME") != 1 ]]; then
echo 'Something is wrong with the changelog.'
git diff -- "$FILENAME"
exit 1