NetworkManager/contrib/scripts/code-style-git-post-commit-hook
Thomas Haller 1a56dcd4da
contrib: explicitly pass "-n" to "nm-code-format.sh" in "code-style-git-post-commit-hook"
"nm-code-format.sh" is going to change the default behavior from "-n" to
"-i", that is, from check-only to reformat. Explicitly pass "-n" where
we want it.
2021-09-16 08:47:38 +02:00

22 lines
413 B
Bash
Executable file

#!/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" -n "${CHANGED_FILES}"
fi