mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
e54939c845
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
22 lines
303 B
Bash
Executable File
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}
|