exclude mustach from indentation requirements

This commit is contained in:
Christian Grothoff 2022-09-28 08:55:17 +02:00
parent d645ea5c8e
commit 58a5c0857b
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -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;