From be64209292e1507e0cacba4afe004148eb08d6a6 Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Mon, 4 Nov 2019 16:50:03 -0500 Subject: [PATCH] less verbose snapshot download --- lbry/scripts/wallet_server_entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/scripts/wallet_server_entrypoint.sh b/lbry/scripts/wallet_server_entrypoint.sh index ead599a61..09c144a6a 100755 --- a/lbry/scripts/wallet_server_entrypoint.sh +++ b/lbry/scripts/wallet_server_entrypoint.sh @@ -6,7 +6,7 @@ SNAPSHOT_URL="${SNAPSHOT_URL:-}" #off by default. latest snapshot at https://lbr if [[ -n "$SNAPSHOT_URL" ]] && [[ ! -f /database/claims.db ]]; then echo "Downloading wallet snapshot from $SNAPSHOT_URL" - wget -O wallet_snapshot.tar.bz2 "$SNAPSHOT_URL" + wget --no-verbose -O wallet_snapshot.tar.bz2 "$SNAPSHOT_URL" echo "Extracting snapshot..." tar xvjf wallet_snapshot.tar.bz2 --directory /database rm wallet_snapshot.tar.bz2