Pārlūkot izejas kodu

github.yml: Remove duplicate -prune in line endings stage

Alexander Wilms 2 gadi atpakaļ
vecāks
revīzija
04b3dca773
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      .github/workflows/github.yml

+ 1 - 1
.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 -prune -o -path ./test/googletest \
+        find . -path ./.git -prune -o -path ./AI/FuzzyLite -prune -o -path ./test/googletest \
         -o -path ./osx  -prune -o -type f \
         -not -name '*.png' -and -not -name '*.vcxproj*' -and -not -name '*.props' -and -not -name '*.wav' -and -not -name '*.ico' -and -not -name '*.bat' -print0 | \
         { ! xargs -0 grep -l -z -P '\r\n'; }