1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-30 16:29:55 +00:00
ooot/format.sh
2022-04-13 17:00:41 -04:00

5 lines
218 B
Bash
Executable File

#!/usr/bin/env bash
find src/ iname '*.cpp' -exec clang-format -i -style=file "{}" \;
find src/ iname '*.h' -exec clang-format -i -style=file "{}" \;
find include/ iname '*.h' -exec clang-format -i -style=file "{}" \;