Skip to content

Commit

Permalink
Clean up styling script
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadden committed Jan 2, 2021
1 parent 171d34a commit 09c73c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/apply-code-styling.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Apply our .clang-format styling to all C++ source files.
# Note that this should be run from the root directory.
find src unit_tests examples -path examples/asm-dom/build -prune -o \
-name *.[chi]pp | xargs -n1 clang-format -i -style=file
find src unit_tests examples -name *.[chi]pp \
| xargs -n1 clang-format -i -style=file

0 comments on commit 09c73c6

Please sign in to comment.