aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSitaram Chamarty <sitaramc@gmail.com>2023-05-02 15:23:38 +0530
committerSitaram Chamarty <sitaramc@gmail.com>2023-05-02 15:23:38 +0530
commit9987ee5b070e49db5996711905250288d7e817c4 (patch)
tree6d7d17b14d629a0edc10af8168a2634f48be8f28
parentsave-push-signatures: use refs/meta/push-certs instead of refs/push-certs (diff)
downloadgitolite-gentoo-9987ee5b070e49db5996711905250288d7e817c4.tar.gz
gitolite-gentoo-9987ee5b070e49db5996711905250288d7e817c4.tar.bz2
gitolite-gentoo-9987ee5b070e49db5996711905250288d7e817c4.zip
egrep obsolescent, use grep -Eupstream-g3
-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()));