mirror of
https://github.com/libssh2/libssh2.git
synced 2025-11-17 04:22:32 +03:00
Also: - use more `--` end-of-options markers. - checksrc.sh: use literal quotes. Closes #1739
14 lines
265 B
Bash
Executable File
14 lines
265 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) The libssh2 project and its contributors.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
set -eu
|
|
|
|
cd "$(dirname "$0")"/..
|
|
|
|
git ls-files -z | xargs -0 -r \
|
|
codespell \
|
|
--skip 'docs/AUTHORS' \
|
|
--ignore-words 'ci/codespell-ignore.words' \
|
|
--
|