From 81023f6318b0257fd266585b34817dee46c37e35 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 7 Oct 2014 12:41:00 +0200 Subject: be more quiet unless errors occur Signed-off-by: Florian Pritz --- test/lib/common.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/lib/common.inc') diff --git a/test/lib/common.inc b/test/lib/common.inc index cf22be5..554fb9a 100644 --- a/test/lib/common.inc +++ b/test/lib/common.inc @@ -17,7 +17,7 @@ signpkg() { if [[ -n $GPGKEY ]]; then SIGNWITHKEY="-u ${GPGKEY}" fi - gpg --detach-sign --use-agent ${SIGNWITHKEY} ${@} || die + gpg --batch -q --detach-sign --use-agent ${SIGNWITHKEY} ${@} || die } oneTimeSetUp() { @@ -89,7 +89,7 @@ setUp() { mkdir -p "${TMP}/ftp/${PKGPOOL}" mkdir -p "${TMP}/ftp/${SRCPOOL}" mkdir -p "${TMP}/history-repo" - git init "${TMP}/history-repo" + git init -q "${TMP}/history-repo" msg 'Creating svn repository...' svnadmin create "${TMP}/svn-packages-repo" -- cgit v1.2.3-24-g4f1b