diff --git a/.github/workflows/weekly_crlftolf.yaml b/.github/workflows/weekly_crlftolf.yaml index 568b4d6c6..4dd5a70a9 100644 --- a/.github/workflows/weekly_crlftolf.yaml +++ b/.github/workflows/weekly_crlftolf.yaml @@ -17,7 +17,8 @@ jobs: id: sort run: | echo "Converting crlf to lf" - find blog -type f -print0 | xargs -0 dos2unix; + apt-get install dos2unix + find . -type f -print0 | xargs -0 dos2unix; shell: bash - name: Create New Pull Request If Needed uses: peter-evans/create-pull-request@v5