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
Andreas Schneider e54939c845 scripts: Add codespell check
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2023-08-14 21:45:30 +00:00

22 lines
303 B
Bash
Executable File

#!/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}