From ae7c3b2db8dfc08260c3440ad46a5d9bd01309bd Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 8 Feb 2023 16:17:19 +0100 Subject: [PATCH] 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. --- tools/fmt-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fmt-check.sh b/tools/fmt-check.sh index 009e3f6..976f4e1 100755 --- a/tools/fmt-check.sh +++ b/tools/fmt-check.sh @@ -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