From 65d702b1371d7b54230cfeec97157e5fc46bb520 Mon Sep 17 00:00:00 2001 From: Charlotte Meyer Date: Thu, 26 Aug 2021 12:42:18 +0000 Subject: [PATCH] Fix format CI test --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index a2b0a40..7d7e9da 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -14,5 +14,5 @@ task: script: - sudo pacman --noconfirm -Syu - sudo pacman --noconfirm -S clang git - - clang-format -i **/*.{c,h} + - find -name .git -prune -o -type f -name '*.[ch]' -print | xargs -d '\n' clang-format -i - git diff --exit-code