mirror of
https://github.com/juzzlin/Heimer.git
synced 2025-05-09 12:53:20 +08:00
10 lines
157 B
Bash
Executable File
10 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CLANG_FORMAT=clang-format
|
|
|
|
FILES=$(find src -name *hpp -or -name *cpp | grep -v contrib)
|
|
${CLANG_FORMAT} -i -style=file ${FILES}
|
|
|
|
echo "Done."
|
|
|