From b2ea240bbb576b19f75fb4baac60c323340bdc29 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Fri, 1 Sep 2023 16:21:00 +0200 Subject: [PATCH] Update clang-format.sh --- scripts/clang-format.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/clang-format.sh b/scripts/clang-format.sh index b2ef7dc..9a8c89b 100755 --- a/scripts/clang-format.sh +++ b/scripts/clang-format.sh @@ -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