From 813bc4dee82561e0821a2a23bc0aa19e75c24a72 Mon Sep 17 00:00:00 2001 From: Cody Date: Fri, 29 May 2026 22:18:22 +0100 Subject: [PATCH] Fix issue #66 only edit text files not lfs pointers --- add_eof_newline.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add_eof_newline.sh b/add_eof_newline.sh index 0dfd88c..af88e2d 100755 --- a/add_eof_newline.sh +++ b/add_eof_newline.sh @@ -6,4 +6,4 @@ while IFS= read -r -d '' f; do if [ "$(tail -c1 "$f")" != "" ]; then printf '\n' >> "$f" fi -done < <(git ls-files -z) +done < <(git grep -z -I -l .)