From 9420c1b9f24ed3b585e2d3b5a0e867298a155bed Mon Sep 17 00:00:00 2001 From: richie Date: Wed, 17 May 2023 21:13:06 +0800 Subject: [PATCH] Update format_code.sh (#1512) --- format_code.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format_code.sh b/format_code.sh index ccfe19bce6..a24d8084a9 100755 --- a/format_code.sh +++ b/format_code.sh @@ -1,6 +1,6 @@ #!/bin/bash -find include src pika-tools -regex '.*\.\(cpp\|hpp\|c\|h\|cc\)' | xargs clang-format -i +find include src tools -regex '.*\.\(cpp\|hpp\|c\|h\|cc\)' | xargs clang-format -i # If you want to automatically format your code before git commit