mirror of
https://github.com/curl/curl.git
synced 2026-04-13 00:31:41 +08:00
It correctly picked all pips, but also picked
`tests/http/requirements.txt` twice and also
`.github/scripts/codespell-ignore.txt`. Try avoid these issues with this
patch.
Follow-up to 6a31e3137a #18939
Closes #18946
20 lines
444 B
Bash
Executable File
20 lines
444 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "${0}")"/../..
|
|
|
|
# shellcheck disable=SC2046
|
|
codespell \
|
|
--skip '.github/scripts/spellcheck.words' \
|
|
--skip '.github/scripts/typos.toml' \
|
|
--skip 'docs/THANKS' \
|
|
--skip 'packages/*' \
|
|
--skip 'scripts/wcurl' \
|
|
--ignore-regex '.*spellchecker:disable-line' \
|
|
--ignore-words '.github/scripts/codespell-ignore.words' \
|
|
$(git ls-files)
|