Skip to content

Commit

Permalink
fix clang-check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofMoch committed Nov 6, 2024
1 parent 56046ba commit 83bd6b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: sudo apt-get install clang-format
- name: Check ios clang formatting
run: |
find ios -type f \( -name "*.h" -o -name "*.cpp" -o -name "*.m" -o -name "*.mm" \) -print0 | while read -d $'\0' file; do
find ./packages/react-native-video/ios -type f \( -name "*.h" -o -name "*.cpp" -o -name "*.m" -o -name "*.mm" \) -print0 | while read -d $'\0' file; do
clang-format -style=file:./packages/react-native-video/ios/.clang-format -i "$file"
done
shell: bash
Expand Down

0 comments on commit 83bd6b2

Please sign in to comment.