Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-01-05 09:28:13 +0300
committerJunio C Hamano <gitster@pobox.com>2008-01-05 11:07:57 +0300
commit0feb4d1c99ef4188123ff38d702bcbdd483c3702 (patch)
tree51ab8331e425083c03a18304b3a80104f884e4b0 /t/t5401-update-hooks.sh
parent90ed6c0576156d356aa35ee79aaf85825f9566f6 (diff)
t/t{3600,3800,5401}: do not use egrep when grep would do
There is nothing _wrong_ with egrep per se, but this way we would have less dependency on external tools. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5401-update-hooks.sh')
-rwxr-xr-xt/t5401-update-hooks.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5401-update-hooks.sh b/t/t5401-update-hooks.sh
index c5dd30d0a4..3eea3069eb 100755
--- a/t/t5401-update-hooks.sh
+++ b/t/t5401-update-hooks.sh
@@ -129,7 +129,7 @@ STDOUT post-update
STDERR post-update
EOF
test_expect_success 'send-pack stderr contains hook messages' '
- egrep ^STD send.err >actual &&
+ grep ^STD send.err >actual &&
git diff - actual <expect
'