emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master b8a96f0556 4/4: Port pre-commit hook to Git 2.35.0


From: Paul Eggert
Subject: master b8a96f0556 4/4: Port pre-commit hook to Git 2.35.0
Date: Wed, 23 Feb 2022 14:41:40 -0500 (EST)

branch: master
commit b8a96f055624f86fe965a0d1b7b2495b2db80e63
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Paul Eggert <eggert@cs.ucla.edu>

    Port pre-commit hook to Git 2.35.0
    
    * build-aux/git-hooks/pre-commit: Use LC_ALL=C grep -E instead of
    sane_egrep (removed in Git 2.35.0).
---
 build-aux/git-hooks/pre-commit | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/build-aux/git-hooks/pre-commit b/build-aux/git-hooks/pre-commit
index a55004680f..49bf05f2d9 100755
--- a/build-aux/git-hooks/pre-commit
+++ b/build-aux/git-hooks/pre-commit
@@ -45,7 +45,9 @@ git_diff='git diff --cached --name-only --diff-filter=A'
 
 # 'git diff' will backslash escape tabs and newlines, so we don't have
 # to worry about word splitting here.
-$git_diff $head | sane_egrep 'ChangeLog|^-|/-|[^-+./_0-9A-Z_a-z]' | while IFS= 
read -r new_name; do
+$git_diff $head |
+LC_ALL=C grep -E 'ChangeLog|^-|/-|[^-+./_0-9A-Z_a-z]' |
+while IFS= read -r new_name; do
   case $new_name in
     -* | */-*)
       echo "$new_name: File name component begins with '-'."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]