mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-12-03 10:40:54 +00:00
5 lines
142 B
Bash
Executable File
5 lines
142 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
find src include \( -name "*.c" -or -name "*.cpp" -or -name "*.h" -or -name "*.hpp" \) -exec clang-format -i --verbose {} +
|