mirror of
https://github.com/curl/curl.git
synced 2026-06-06 20:24:22 +03:00
14 lines
294 B
Bash
Executable file
14 lines
294 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "${0}")"/../..
|
|
|
|
git ls-files \
|
|
| grep -v -E '(codespell-ignore\.txt|spellcheck\.words|/wcurl|CIPHERS-TLS12\.md|/THANKS)' \
|
|
| typos \
|
|
--config '.github/scripts/typos.toml' \
|
|
--file-list -
|