ports/.hooks/pre-commit.d/check_mk_indentations
Luca Pizzamiglio 302c208fc5 Component: git hooks
Add common error function in hooks
Error messages are printed in stderr

Reviewed By: tcberner, #portmgr
Differential Revision: https://reviews.freebsd.org/D38026
2023-01-12 22:09:50 +01:00

36 lines
1,012 B
Bash
Executable file

#!/bin/sh
#
# Check that Mk/ files are properly indented
#
common_functions="$(realpath "$(dirname "$0")")/common.sh"
if [ -r "${common_functions}" ]; then
. "${common_functions}"
fi
check_indentation() {
local mkfile="$1"
local name=$(echo "${mkfile}" | awk -F / '{print $NF}')
local tempdir=$(mktemp -d -t check_indentations-${name})
if [ $? -ne 0 ] ; then
echo "[pre-commit] failed to create tempdir"
exit 2
fi
cp ${mkfile} ${tempdir} && Tools/scripts/indent_make_if.pl ${tempdir}/${name}
if [ $? -ne 0 ] ; then
pre_commit_error "failed to run Tools/scripts/indent_make_if.pl"
exit 2
fi
cmp -s ${tempdir}/*
if [ $? -ne 0 ] ; then
pre_commit_error "${name} is not properly indented -- please use ${tempdir}/${name} which was created using Tools/scripts/indent_make_if.pl"
exit 1
fi
}
modified_mks=$(git diff --name-only --cached --diff-filter=ACRM | grep -E '^Mk/.*\.mk$')
if [ $? -eq 0 ] ; then
for modified_mk in ${modified_mks} ; do
check_indentation "${modified_mk}"
done
fi