Skip to content

Commit

Permalink
Do not indent uvw
Browse files Browse the repository at this point in the history
  • Loading branch information
promi committed Feb 13, 2017
1 parent 3f3267e commit de60ca5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/indent.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/bash
find . -type f \( -name *.cc -o -name *.hh -o -name *.h \) | sort | xargs -I '{}' \
find . \
-path ./uvw -prune \
-o -type f \( -name *.cc -o -name *.hh -o -name *.h \) \
| sort | xargs -I '{}' \
astyle \
--indent=spaces=2 \
--style=gnu \
Expand Down

0 comments on commit de60ca5

Please sign in to comment.