fishbowl/format.sh
2026-05-27 16:03:38 +09:00

7 lines
163 B
Bash
Executable file

#!/bin/sh
if [ ! -d .git ]; then
while [ ! -d .git ]; do
cd ..
done
fi
clang-format --verbose -i `find engine/include engine/src -name "*.cc" -or -name "*.h"`