From f63c2ac5db1d8c43565b9ba6eac356cc0e5c4f11 Mon Sep 17 00:00:00 2001 From: Alexander Wilms Date: Mon, 23 Oct 2023 14:55:09 +0200 Subject: [PATCH] CI step "Ensure LF line endings": No need to ignore Android files Co-authored-by: Ivan Savenko --- .github/workflows/github.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github.yml b/.github/workflows/github.yml index 2ffefd71b..8f9567f9a 100644 --- a/.github/workflows/github.yml +++ b/.github/workflows/github.yml @@ -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'; }