aboutsummaryrefslogtreecommitdiff
path: root/pre-commit
diff options
context:
space:
mode:
Diffstat (limited to 'pre-commit')
-rwxr-xr-xpre-commit9
1 files changed, 5 insertions, 4 deletions
diff --git a/pre-commit b/pre-commit
index 777728a6b..c67fcaf0c 100755
--- a/pre-commit
+++ b/pre-commit
@@ -2,6 +2,8 @@
2# Run this script to indent the GNUnet code. When run without arguments, 2# Run this script to indent the GNUnet code. When run without arguments,
3# it indents the ENTIRE src/ tree. Run with 'src/XXX' to indent the 3# it indents the ENTIRE src/ tree. Run with 'src/XXX' to indent the
4# src/XXX directory. 4# src/XXX directory.
5#
6# This script is in the public domain.
5if test $# = 0 7if test $# = 0
6then 8then
7 PATHS=src/ 9 PATHS=src/
@@ -12,10 +14,9 @@ find $PATHS -name "*.c" -exec indent {} \;
12find $PATHS -name "*.h" -exec indent {} \; 14find $PATHS -name "*.h" -exec indent {} \;
13find $PATHS -name "*.c" -exec indent {} \; 15find $PATHS -name "*.c" -exec indent {} \;
14find $PATHS -name "*.h" -exec indent {} \; 16find $PATHS -name "*.h" -exec indent {} \;
15find $PATHS -name "*.c" -exec contrib/removetrailingwhitespace.py {} \; 17find $PATHS -name "*.c" -exec contrib/scripts/removetrailingwhitespace.py {} \;
16find $PATHS -name "*.h" -exec contrib/removetrailingwhitespace.py {} \; 18find $PATHS -name "*.h" -exec contrib/scripts/removetrailingwhitespace.py {} \;
17if test -x "`which 'dos2unix'`" 19if test -n "`dos2unix -V | head -n1 | awk '{print $1 $2}'`"; then
18then
19 find $PATHS -name "*.c" -exec dos2unix {} \; 20 find $PATHS -name "*.c" -exec dos2unix {} \;
20 find $PATHS -name "*.h" -exec dos2unix {} \; 21 find $PATHS -name "*.h" -exec dos2unix {} \;
21fi 22fi