1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/script/codespell.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
303 B
Bash
Raw Normal View History

#!/bin/bash
#
# Check code spelling
if [ $# -lt 1 ]; then
echo "Usage: $(basename "${0}") DIR"
exit 1
fi
DIR="${1}"
codespell "${DIR}"
ret=$?
if [ ${ret} -ne 0 ]; then
echo
echo "Fix code spelling issues. If it detected false positives" \
"please update .codespellignore."
fi
exit ${ret}