summary refs log tree commit diff
path: root/.ci
diff options
context:
space:
mode:
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/format.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/format.sh b/.ci/format.sh
index 89fa4e88..d87bfb66 100755
--- a/.ci/format.sh
+++ b/.ci/format.sh
@@ -9,6 +9,6 @@ set -o errexit
 set -o pipefail
 set -o nounset
 
-FILES=`find include src -type f -type f \( -iname "*.cc" -o -iname "*.h" \)`
+FILES=`find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \)`
 
 clang-format -i $FILES && git diff --exit-code