From 7cdb26108cc1253f6474b0f0d9133ea04768313a Mon Sep 17 00:00:00 2001 From: Ganesh Pawar Date: Mon, 22 Mar 2021 09:47:40 +0530 Subject: [PATCH] minor: Avoid verbose tar output. It isn't much helpful and clutters the logs. --- scripts/lib/build-pgroonga | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/build-pgroonga b/scripts/lib/build-pgroonga index 4c7ce0df89..987c4fa0bd 100755 --- a/scripts/lib/build-pgroonga +++ b/scripts/lib/build-pgroonga @@ -7,7 +7,7 @@ PGROONGA_VERSION="2.2.3" cd "$(mktemp -d)" wget https://packages.groonga.org/source/pgroonga/pgroonga-"$PGROONGA_VERSION".tar.gz -tar xvf pgroonga-"$PGROONGA_VERSION".tar.gz +tar xf pgroonga-"$PGROONGA_VERSION".tar.gz cd pgroonga-"$PGROONGA_VERSION" make HAVE_MSGPACK=1