Combine all values of codespell --skip option into one

codespell 1.17.1 from Debian Sid accepts multiple -S options, but 1.16
in Ubuntu 20.04 doesn't seem to like them.
This commit is contained in:
Vadim Zeitlin 2020-07-13 17:25:18 +02:00
parent e4a826d250
commit 1fcdaa7f22

View File

@ -40,4 +40,4 @@ jobs:
- name: Run codespell
run: |
codespell -I misc/suppressions/codespell-words -x misc/suppressions/codespell-lines -S docs/changes.txt -S docs/changes_30.txt -S '*.png' -S '*.ico' -S '*.bmp' -S '*.cur' -S docs/doxygen/images README.md docs include interface
codespell -I misc/suppressions/codespell-words -x misc/suppressions/codespell-lines -S 'docs/changes.txt,docs/changes_30.txt,*.png,*.ico,*.bmp,*.cur,docs/doxygen/images' README.md docs include interface