Include actual count of files with `CRLF` endings found

The script has been updated to include the actual count of files
with CRLF endings found.

The exit status of the script now accurately reflects the number of
files with incorrect line endings.
pull/768/head
Emmanuel Chee-zaram Okeke 2 years ago committed by Daniel Martí
parent d3763143bd
commit 47296634f1

@ -8,8 +8,9 @@
Andrew LeFevre <jalefevre@liberty.edu> Andrew LeFevre <jalefevre@liberty.edu>
Daniel Martí <mvdan@mvdan.cc> Daniel Martí <mvdan@mvdan.cc>
Emmanuel Chee-zaram Okeke <ecokeke21@gmail.com>
Nicholas Jones <me@nicholasjon.es> Nicholas Jones <me@nicholasjon.es>
Zachary Wasserman <zachwass2000@gmail.com> Zachary Wasserman <zachwass2000@gmail.com>
lu4p <lu4p@pm.me> lu4p <lu4p@pm.me>
pagran <pagran@protonmail.com> pagran <pagran@protonmail.com>
shellhazard <shellhazard@tutanota.com> shellhazard <shellhazard@tutanota.com>

@ -1,19 +1,18 @@
#!/bin/bash #!/bin/bash
if file_count=$(grep \
grep \ --recursive \
--recursive \ --files-with-matches \
--files-with-matches \ --binary \
--binary \ --binary-files=without-match \
--binary-files=without-match \ --max-count=1 \
--max-count=1 \ --exclude-dir="\.git" \
--exclude-dir="\.git" \ $'\r' \
$'\r' \ . | wc -l)
.
then if [[ $file_count -gt 0 ]]; then
# TODO exit status should be number of files with wrong endings found echo -e "Found $file_count file(s) with CRLF endings."
echo -e "Found at least a file with CRLF endings." exit "$file_count"
exit 1
fi fi
echo -e "No files with CRLF endings found." echo -e "No files with CRLF endings found."

Loading…
Cancel
Save