tools: be silent when checking c code formatting

no news is good news. and either way, clang-format verbose mode is
inconsistent with zig fmt. the latter outputs only malformatted files.
pull/20/head
alex 2 years ago
parent 3f6c0aef44
commit ae7c3b2db8
Signed by: x1ddos
GPG Key ID: FDEFB4A63CBD8460

@ -2,4 +2,4 @@
set -e
zig fmt --check .
C_FILES=$(find ./src -type f -name '*.c' ! -name 'lv_font*')
clang-format -style=file -dry-run -verbose -Werror $C_FILES
clang-format -style=file -dry-run -Werror $C_FILES