|
@@ -4,18 +4,10 @@
|
|
|
# loops over entire GRASS source code tree and indents source code according to SUBMITTING rules
|
|
|
|
|
|
#are we in the tools/ dir? We should not.
|
|
|
-l$ tools 2> /dev/null
|
|
|
-if [ $? -ne 0 ] ; then
|
|
|
- echo "ERROR: this script must be run from the main GRASS source code directory"
|
|
|
+if [ -d tools ] ; then
|
|
|
+ echo "ERROR: this script must be run from the main GRASS source code directory" >&2
|
|
|
exit 1
|
|
|
fi
|
|
|
|
|
|
-echo "Indenting *.c and *.h..."
|
|
|
-find . -type f -name "*.[ch]" | xargs ./tools/grass_indent.sh
|
|
|
-
|
|
|
-echo "Indenting *.cpp..."
|
|
|
-find . -type f -name "*.cpp" | xargs ./tools/grass_indent.sh
|
|
|
-
|
|
|
-echo "Indenting *.cc..."
|
|
|
-find . -type f -name "*.cc" | xargs ./tools/grass_indent.sh
|
|
|
-
|
|
|
+echo "Indenting *.c and *.h..." >&2
|
|
|
+find . -type f -name "*.[ch]" -print0 | xargs -0 ./tools/grass_indent.sh
|