contrib: add git-hook to verify code-style

Signed-off-by: Antonio Cardace <acardace@redhat.com>
This commit is contained in:
Antonio Cardace 2020-09-02 18:25:02 +02:00
parent 5119d00374
commit eebed47257
No known key found for this signature in database
GPG key ID: 6BF80ABD43E377D3

View file

@ -0,0 +1,21 @@
#!/bin/sh
set -e
DISABLED=${NM_HOOK_DISABLED:0}
if [ "$DISABLED" == 1 ]; then
echo "COMMIT HOOK DISABLED"
exit 0
fi
FORMATTER=contrib/scripts/nm-code-format.sh
# Filter only C source files
CHANGED_FILES=$(git log --pretty='' --name-only -n1 | grep -E '\.c$|\.h$' | tr '\n' ' ')
echo $CHANGED_FILES
if [ -x "$FORMATTER" ] && [ ! -z "$CHANGED_FILES" ]; then
"$FORMATTER" "${CHANGED_FILES}"
fi