1
0
mirror of https://github.com/juzzlin/Heimer.git synced 2025-05-09 12:53:20 +08:00
Heimer/scripts/apply-clang-format
2019-10-03 20:03:55 +03:00

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."