[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r16621 - gnunet
From: |
gnunet |
Subject: |
[GNUnet-SVN] r16621 - gnunet |
Date: |
Mon, 29 Aug 2011 12:24:13 +0200 |
Author: grothoff
Date: 2011-08-29 12:24:13 +0200 (Mon, 29 Aug 2011)
New Revision: 16621
Modified:
gnunet/pre-commit
Log:
improved script
Modified: gnunet/pre-commit
===================================================================
--- gnunet/pre-commit 2011-08-29 10:19:43 UTC (rev 16620)
+++ gnunet/pre-commit 2011-08-29 10:24:13 UTC (rev 16621)
@@ -1,12 +1,21 @@
#!/bin/sh
-find src/ -name "*.c" -exec indent {} \;
-find src/ -name "*.h" -exec indent {} \;
-find src/ -name "*.c" -exec indent {} \;
-find src/ -name "*.h" -exec indent {} \;
-find src/ -name "*.c" -exec contrib/removetrailingwhitespace {} \;
-find src/ -name "*.h" -exec contrib/removetrailingwhitespace {} \;
+# 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.
+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/removetrailingwhitespace {} \;
+find $PATHS -name "*.h" -exec contrib/removetrailingwhitespace {} \;
if test -x "`which 'dos2unix'`"
then
- find src/ -name "*.c" -exec dos2unix {} \;
- find src/ -name "*.h" -exec dos2unix {} \;
+ find $PATHS -name "*.c" -exec dos2unix {} \;
+ find $PATHS -name "*.h" -exec dos2unix {} \;
fi
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r16621 - gnunet,
gnunet <=