13 lines
267 B
Bash
13 lines
267 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Copyright (C) The libssh2 project and its contributors.
|
||
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
# shellcheck disable=SC2046
|
||
|
|
codespell --skip='docs/AUTHORS' \
|
||
|
|
--ignore-words='ci/spellcheck-words.txt' \
|
||
|
|
$(git ls-files)
|