diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2023-05-05 08:59:18 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2023-05-05 08:59:18 -0700 |
commit | dbaafd7864d1cbe723fb49651bb718657f85210e (patch) | |
tree | 5647c7d02ce1480a0204aaf964aa2c2c0fd25b31 | |
parent | save-push-signatures: use refs/meta/push-certs instead of refs/push-certs (diff) | |
parent | egrep obsolescent, use grep -E (diff) | |
download | gitolite-gentoo-dbaafd7864d1cbe723fb49651bb718657f85210e.tar.gz gitolite-gentoo-dbaafd7864d1cbe723fb49651bb718657f85210e.tar.bz2 gitolite-gentoo-dbaafd7864d1cbe723fb49651bb718657f85210e.zip |
Merge remote-tracking branch 'upstream/master'
-rwxr-xr-x | t/git-config.t | 8 |
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())); |