aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-10-14 15:45:45 +0000
committerng0 <ng0@n0.is>2019-10-14 15:45:45 +0000
commit096579cbd720bb0b6d0f974cdf0765cf0fdcfca4 (patch)
tree564aee614f9f8de45a43a41e07909598fdfed5b2 /contrib
parent4f9102a80c7f94b88c51176633a49a8107bbdc4e (diff)
downloadgnunet-096579cbd720bb0b6d0f974cdf0765cf0fdcfca4.tar.gz
gnunet-096579cbd720bb0b6d0f974cdf0765cf0fdcfca4.zip
kommando zurueck, this time for real.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/indent_pre-commit22
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/indent_pre-commit b/contrib/indent_pre-commit
new file mode 100755
index 000000000..c67fcaf0c
--- /dev/null
+++ b/contrib/indent_pre-commit
@@ -0,0 +1,22 @@
1#!/bin/sh
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
4# src/XXX directory.
5#
6# This script is in the public domain.
7if test $# = 0
8then
9 PATHS=src/
10else
11 PATHS="$@"
12fi
13find $PATHS -name "*.c" -exec indent {} \;
14find $PATHS -name "*.h" -exec indent {} \;
15find $PATHS -name "*.c" -exec indent {} \;
16find $PATHS -name "*.h" -exec indent {} \;
17find $PATHS -name "*.c" -exec contrib/scripts/removetrailingwhitespace.py {} \;
18find $PATHS -name "*.h" -exec contrib/scripts/removetrailingwhitespace.py {} \;
19if test -n "`dos2unix -V | head -n1 | awk '{print $1 $2}'`"; then
20 find $PATHS -name "*.c" -exec dos2unix {} \;
21 find $PATHS -name "*.h" -exec dos2unix {} \;
22fi