aboutsummaryrefslogtreecommitdiff
path: root/contrib/uncrustify_precommit
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/uncrustify_precommit')
-rwxr-xr-xcontrib/uncrustify_precommit4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/uncrustify_precommit b/contrib/uncrustify_precommit
index 648e6e24..853c8125 100755
--- a/contrib/uncrustify_precommit
+++ b/contrib/uncrustify_precommit
@@ -2,9 +2,9 @@
# use as .git/hooks/pre-commit
exec 1>&2
-return 0
+
RET=0
-changed=$(git diff --cached --name-only)
+changed=$(git diff --cached --name-only | grep -v mustach)
crustified=""
for f in $changed;