From 79ccd8720af4ba6cfa04f2d6b7cb58adc1db1742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=B6eh=20Matt?= <3397065-ZehMatt@users.noreply.gitlab.com> Date: Thu, 22 Sep 2022 23:33:16 +0300 Subject: [PATCH] Single process fix --- CI/check_clang_format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CI/check_clang_format.sh b/CI/check_clang_format.sh index 8d7ccfddf2..109849a98a 100755 --- a/CI/check_clang_format.sh +++ b/CI/check_clang_format.sh @@ -17,7 +17,7 @@ check_format() { find "$path" -type f -name "*" | while read item; do if [[ "$item" =~ .*\.(cpp|hpp|h) ]]; then - check_format_file "$item" & + check_format_file "$item" fi; done; }