diff options
author | ng0 <ng0@n0.is> | 2019-10-14 14:18:31 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-10-14 14:18:31 +0000 |
commit | f801acf4e19dd4a6bec3911f81a16d73e5ddbf84 (patch) | |
tree | 73ea746cd337f4e98ccef86cdd83e09815c3b062 /contrib/indent_pre-commit | |
parent | 0169bf2da23e52f13eef3e77ed93e2ab3d6a674e (diff) |
with 'make pretty' running uncrustify, yapf styling the python files, this file seems obsolete?
Diffstat (limited to 'contrib/indent_pre-commit')
-rwxr-xr-x | contrib/indent_pre-commit | 22 |
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 @@ +#!/bin/sh +# Run this script to indent the GNUnet code. When run without arguments, +# it indents the ENTIRE src/ tree. Run with 'src/XXX' to indent the +# src/XXX directory. +# +# This script is in the public domain. +if test $# = 0 +then + PATHS=src/ +else + PATHS="$@" +fi +find $PATHS -name "*.c" -exec indent {} \; +find $PATHS -name "*.h" -exec indent {} \; +find $PATHS -name "*.c" -exec indent {} \; +find $PATHS -name "*.h" -exec indent {} \; +find $PATHS -name "*.c" -exec contrib/scripts/removetrailingwhitespace.py {} \; +find $PATHS -name "*.h" -exec contrib/scripts/removetrailingwhitespace.py {} \; +if test -n "`dos2unix -V | head -n1 | awk '{print $1 $2}'`"; then + find $PATHS -name "*.c" -exec dos2unix {} \; + find $PATHS -name "*.h" -exec dos2unix {} \; +fi |