Update clang-format.sh

This commit is contained in:
Marc Rousavy 2023-09-01 16:21:00 +02:00
parent 0e9f1ca640
commit b2ea240bbb

View File

@ -2,7 +2,6 @@
if which clang-format >/dev/null; then
find cpp ios android/src/main/cpp -type f \( -name "*.h" -o -name "*.cpp" -o -name "*.m" -o -name "*.mm" \) -print0 | while read -d $'\0' file; do
echo "-> cpp-lint $file"
clang-format -i "$file"
done
else