From 80a14417b6d0950b867315284596daad26cdd10e Mon Sep 17 00:00:00 2001 From: rmcdermo Date: Tue, 8 Aug 2023 14:34:44 -0400 Subject: [PATCH] Workflows: test --- .github/workflows/Line_Endings.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Line_Endings.yml b/.github/workflows/Line_Endings.yml index 7f737bf..72a8dc5 100644 --- a/.github/workflows/Line_Endings.yml +++ b/.github/workflows/Line_Endings.yml @@ -23,9 +23,9 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 - - name: Check for CFLF line endings + - name: Check for CRLF line endings run: | - grep -IURl --exclude={"*.pdf","*.png"} --exclude-dir=".git" $'\r' > tmp.txt + grep -IURl --exclude={"*.pdf","*.png"} --exclude-dir=".git" '\r'$ > tmp.txt cat tmp.txt nlines=$(cat tmp.txt | wc -l) if [ $nlines -gt 0 ]; then