move back
authorng0 <ng0@n0.is>
Mon, 14 Oct 2019 15:21:56 +0000 (15:21 +0000)
committerng0 <ng0@n0.is>
Mon, 14 Oct 2019 15:21:56 +0000 (15:21 +0000)
contrib/indent_pre-commit [deleted file]
pre-commit [new file with mode: 0755]

diff --git a/contrib/indent_pre-commit b/contrib/indent_pre-commit
deleted file mode 100755 (executable)
index c67fcaf..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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
diff --git a/pre-commit b/pre-commit
new file mode 100755 (executable)
index 0000000..c67fcaf
--- /dev/null
@@ -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