aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2023-05-05 08:59:18 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2023-05-05 08:59:18 -0700
commitdbaafd7864d1cbe723fb49651bb718657f85210e (patch)
tree5647c7d02ce1480a0204aaf964aa2c2c0fd25b31
parentsave-push-signatures: use refs/meta/push-certs instead of refs/push-certs (diff)
parentegrep obsolescent, use grep -E (diff)
downloadgitolite-gentoo-dbaafd7864d1cbe723fb49651bb718657f85210e.tar.gz
gitolite-gentoo-dbaafd7864d1cbe723fb49651bb718657f85210e.tar.bz2
gitolite-gentoo-dbaafd7864d1cbe723fb49651bb718657f85210e.zip
Merge remote-tracking branch 'upstream/master'
-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()));