diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-11-25 20:45:07 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-25 20:45:07 +0100 |
commit | ad7ace714d353ef49045bc37c1363e8fc904792d (patch) | |
tree | 7cefc4953bac3061de09d5380719f12c6e4fcef3 /git-am.sh | |
parent | Explicitly truncate bswap operand to uint32_t (diff) | |
parent | Protect scripted Porcelains from GREP_OPTIONS insanity (diff) | |
download | git-ad7ace714d353ef49045bc37c1363e8fc904792d.tar.xz git-ad7ace714d353ef49045bc37c1363e8fc904792d.zip |
Merge branch 'rs/work-around-grep-opt-insanity'
* rs/work-around-grep-opt-insanity:
Protect scripted Porcelains from GREP_OPTIONS insanity
mergetool--lib: simplify guess_merge_tool()
Conflicts:
git-instaweb.sh
Diffstat (limited to 'git-am.sh')
-rwxr-xr-x | git-am.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -205,7 +205,7 @@ check_patch_format () { # and see if it looks like that they all begin with the # header field names... sed -n -e '/^$/q' -e '/^[ ]/d' -e p "$1" | - LC_ALL=C egrep -v '^[!-9;-~]+:' >/dev/null || + sane_egrep -v '^[!-9;-~]+:' >/dev/null || patch_format=mbox fi } < "$1" || clean_abort @@ -561,7 +561,7 @@ do stop_here $this # skip pine's internal folder data - grep '^Author: Mail System Internal Data$' \ + sane_grep '^Author: Mail System Internal Data$' \ <"$dotest"/info >/dev/null && go_next && continue |