aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 't/git-config.t')
-rwxr-xr-xt/git-config.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/git-config.t b/t/git-config.t
index fb5097e..e559343 100755
--- a/t/git-config.t
+++ b/t/git-config.t
@@ -64,7 +64,7 @@ try "ADMIN_PUSH set1; !/FATAL/" or die text();
my $rb = `gitolite query-rc -n GL_REPO_BASE`;
try "
cd $rb; ok
- egrep foo\\|bar *.git/config
+ grep -E foo\\|bar *.git/config
";
$t = join("\n", sort (lines()));
@@ -100,7 +100,7 @@ try "ADMIN_PUSH set1; !/FATAL/" or die text();
try "
cd $rb; ok
- egrep foo\\|bar *.git/config
+ grep -E foo\\|bar *.git/config
";
$t = join("\n", sort (lines()));
@@ -132,7 +132,7 @@ try "ADMIN_PUSH set1; !/FATAL/" or die text();
try "
cd $rb; ok
- egrep foo\\|bar *.git/config
+ grep -E foo\\|bar *.git/config
";
$t = join("\n", sort (lines()));
@@ -172,7 +172,7 @@ try "
try "
cd $rb; ok
- find . -name config | xargs egrep foo\\|bar
+ find . -name config | xargs grep -E foo\\|bar
";
$t = join("\n", sort (lines()));