1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

CI step "Ensure LF line endings": No need to ignore Android files

Co-authored-by: Ivan Savenko <saven.ivan@gmail.com>
This commit is contained in:
Alexander Wilms
2023-10-23 14:55:09 +02:00
committed by GitHub
parent 7e9a3ea042
commit f63c2ac5db

View File

@@ -148,7 +148,7 @@ jobs:
- name: Ensure LF line endings
if: ${{ startsWith(matrix.preset, 'linux-clang-test') }}
run: |
find . -path ./.git -prune -o -path ./AI/FuzzyLite -prune -o -path ./android -prune \
find . -path ./.git -prune -o -path ./AI/FuzzyLite -prune \
-o -path ./osx -prune -o -path ./test/googletest -prune -o -type f \
-not -name '*.png' -and -not -name '*.vcxproj*' -and -not -name '*.props' \
-not -name '*.wav' -not -name '*.ico' -print0 | { ! xargs -0 grep -l -z -P '\r\n'; }