diff --git a/AUTHORS b/AUTHORS index 37233b9..de23957 100644 --- a/AUTHORS +++ b/AUTHORS @@ -8,8 +8,9 @@ Andrew LeFevre Daniel Martí +Emmanuel Chee-zaram Okeke Nicholas Jones Zachary Wasserman lu4p pagran -shellhazard \ No newline at end of file +shellhazard diff --git a/scripts/crlf-test.sh b/scripts/crlf-test.sh index 56e9e95..3789785 100755 --- a/scripts/crlf-test.sh +++ b/scripts/crlf-test.sh @@ -1,19 +1,18 @@ #!/bin/bash -if - grep \ - --recursive \ - --files-with-matches \ - --binary \ - --binary-files=without-match \ - --max-count=1 \ - --exclude-dir="\.git" \ - $'\r' \ - . -then - # TODO exit status should be number of files with wrong endings found - echo -e "Found at least a file with CRLF endings." - exit 1 +file_count=$(grep \ + --recursive \ + --files-with-matches \ + --binary \ + --binary-files=without-match \ + --max-count=1 \ + --exclude-dir="\.git" \ + $'\r' \ + . | wc -l) + +if [[ $file_count -gt 0 ]]; then + echo -e "Found $file_count file(s) with CRLF endings." + exit "$file_count" fi echo -e "No files with CRLF endings found."