aboutsummaryrefslogtreecommitdiff
path: root/pre-commit
diff options
context:
space:
mode:
Diffstat (limited to 'pre-commit')
-rwxr-xr-xpre-commit17
1 files changed, 17 insertions, 0 deletions
diff --git a/pre-commit b/pre-commit
new file mode 100755
index 000000000..b733c44fa
--- /dev/null
+++ b/pre-commit
@@ -0,0 +1,17 @@
1#!/bin/sh
2# NOTE: "touch mydir/no-indent" to make the tree starting at mydir untouchable
3l=""
4for n in `find . -name "no-indent"`
5do
6 n=`dirname "$n"`
7 l="-and -not -path \"$n/*\" $l"
8done
9indent -nut `echo $l | xargs find . -name "*.c"`
10indent -nut `echo $l | xargs find . -name "*.h"`
11if test -x "`which 'dos2unix'`"
12then
13 dos2unix -ko `echo $l | xargs find . -name "*.c"`
14 dos2unix -ko `echo $l | xargs find . -name "*.h"`
15 rm `echo $l | xargs find . -name "*.?~"`
16fi
17