diff options
author | Sitaram Chamarty <sitaramc@gmail.com> | 2023-05-02 15:23:38 +0530 |
---|---|---|
committer | Sitaram Chamarty <sitaramc@gmail.com> | 2023-05-02 15:23:38 +0530 |
commit | 9987ee5b070e49db5996711905250288d7e817c4 (patch) | |
tree | 6d7d17b14d629a0edc10af8168a2634f48be8f28 | |
parent | save-push-signatures: use refs/meta/push-certs instead of refs/push-certs (diff) | |
download | gitolite-gentoo-upstream-g3.tar.gz gitolite-gentoo-upstream-g3.tar.bz2 gitolite-gentoo-upstream-g3.zip |
egrep obsolescent, use grep -Eupstream-g3
-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())); |