t4205: replace .\+ with ..* in sed commands
commit7c37521487332fd700e2fa58bd2547d275e4f4d2
authorBrian Gernhardt <brian@gernhardtsoftware.com>
Mon, 1 Jul 2013 18:59:59 +0000 (1 14:59 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 1 Jul 2013 19:28:06 +0000 (1 12:28 -0700)
tree2a54f959639f3c95ed554277c15dfd9807de2a85
parentecaee8050cec23eb4cf082512e907e3e52c20b57
t4205: replace .\+ with ..* in sed commands

OS X's sed only accepts basic regular expressions, which does not
allow the + quantifier.  However '..*' (anything, followed by zero or
more anything) is the same as '.\+' (one or more anything) and valid
in any regular expression language.

Signed-off-by: Brian Gernhardt <brian@gernhardtsoftware.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4205-log-pretty-formats.sh