7 lines
163 B
Bash
Executable file
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"`
|