From aa3b40aaffa28fae55be087e18a57cd24251d9b9 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Tue, 22 Jun 2021 18:35:41 -0300 Subject: tests/remotes.sh: Supress output of git config --- tests/remotes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/remotes.sh b/tests/remotes.sh index 4a7ced1..4d6a8a2 100755 --- a/tests/remotes.sh +++ b/tests/remotes.sh @@ -7,10 +7,10 @@ TEST_PREFIX="$PWD/tests/prefix/$(uuid)" make PREFIX="$TEST_PREFIX" install 1>/dev/null PATH="$PWD/tests:$TEST_PREFIX/bin:$PATH" -if ! git config --global user.email; then +if ! git config --global user.email > /dev/null; then git config --global user.email email@example.com fi -if ! git config --global user.name; then +if ! git config --global user.name > /dev/null; then git config --global user.name Example fi -- cgit v1.2.3