summaryrefslogtreecommitdiff
path: root/t/t3800-mktag.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2008-01-04 22:28:13 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2008-01-05 00:07:57 -0800
commit0feb4d1c99ef4188123ff38d702bcbdd483c3702 (patch)
tree51ab8331e425083c03a18304b3a80104f884e4b0 /t/t3800-mktag.sh
parentt/t7001: avoid unnecessary ERE when using grep (diff)
downloadtgif-0feb4d1c99ef4188123ff38d702bcbdd483c3702.tar.xz
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/t3800-mktag.sh')
-rwxr-xr-xt/t3800-mktag.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3800-mktag.sh b/t/t3800-mktag.sh
index 261f199a0c..e5f3073f88 100755
--- a/t/t3800-mktag.sh
+++ b/t/t3800-mktag.sh
@@ -15,7 +15,7 @@ check_verify_failure () {
test_expect_success \
"$1" \
'git-mktag <tag.sig 2>message ||
- egrep -q -f expect.pat message'
+ grep -q -f expect.pat message'
}
###########################################################