mirror of
https://github.com/curl/curl.git
synced 2026-06-07 01:04:15 +03:00
14 lines
231 B
Bash
Executable file
14 lines
231 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) Viktor Szakats
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "${0}")"/../..
|
|
|
|
git ls-files | typos \
|
|
--isolated \
|
|
--force-exclude \
|
|
--config '.github/scripts/typos.toml' \
|
|
--file-list -
|