Skip to content

Commit 60af654

Browse files
committed
[CI PIPELINE] Fixed check_format.sh script to prevent cpputest directory from being read
1 parent 25df744 commit 60af654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/check_format.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
FILES=$(find . -name "*.c" -o -name "*.h" -not -path "./cpputest/*")
3+
FILES=$(find . -type f \( -name "*.c" -o -name "*.h" \) -not -path "./cpputest/*")
44

55
format_check=0
66

0 commit comments

Comments
 (0)