Skip to content

Commit 5322170

Browse files
committed
Update style.yml
1 parent 8fc31e9 commit 5322170

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
9797
- name: Check Clang warnings
9898
run: |
99-
find runtime/libcn/ -iname '*.c' | xargs clang-19 -c -I runtime/libcn/include/ -Werror -Wall -o /dev/null
99+
find runtime/libcn/ -iname '*.c' -exec clang-19 -c -I runtime/libcn/include/ -Werror -Wall -o /dev/null {} ';'
100100
101101
gcc-warnings:
102102
name: GCC warnings
@@ -115,7 +115,7 @@ jobs:
115115
116116
- name: Check GCC warnings
117117
run: |
118-
find runtime/libcn/ -iname '*.c' | xargs gcc -c -I runtime/libcn/include/ -Werror -Wall -o /dev/null
118+
find runtime/libcn/ -iname '*.c' -exec gcc -c -I runtime/libcn/include/ -Werror -Wall -o /dev/null {} ';'
119119
120120
shellcheck:
121121
name: ShellCheck

0 commit comments

Comments
 (0)