diff options
Diffstat (limited to 'bin/format_source_patch')
-rwxr-xr-x | bin/format_source_patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/format_source_patch b/bin/format_source_patch new file mode 100755 index 0000000..4c531ea --- /dev/null +++ b/bin/format_source_patch @@ -0,0 +1,14 @@ +#!/bin/bash +find . -type d \( -path ./config \) -prune \ + -o -iname *.h -o -iname *.c -o -iname *.cpp -o -iname *.hpp \ + | xargs clang-format -style=file -i -fallback-style=none + +git diff > clang_format.patch + +# Delete if 0 size +if [ ! -s clang_format.patch ] +then + rm clang_format.patch +fi + +exit 0
\ No newline at end of file |