summaryrefslogtreecommitdiffstats
path: root/uncrustify.sh
diff options
context:
space:
mode:
Diffstat (limited to 'uncrustify.sh')
-rwxr-xr-xuncrustify.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/uncrustify.sh b/uncrustify.sh
deleted file mode 100755
index 65058736c..000000000
--- a/uncrustify.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-for d in src src/libserver src/client src/libmime src/libutil src/lua src/classifiers src/tokenizers src/plugins ; do
- file_list=`find ${d} -maxdepth 1 -name "*.c" -or -name "*.h" -type f`
- for file2indent in $file_list
- do
- echo "Indenting file $file2indent"
- uncrustify -f "$file2indent" -c "./uncrustify.cfg" -o indentoutput.tmp
- mv indentoutput.tmp "$file2indent"
- done
-done