From 0bb16841907205ccf710a0fd9e22de50be1f087c Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 27 Mar 2024 10:06:29 +0100 Subject: [PATCH] --progress=false : do not log progress --- RUNTIME/GEOKEYS_refresh.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RUNTIME/GEOKEYS_refresh.sh b/RUNTIME/GEOKEYS_refresh.sh index 77a22be3..064f11fa 100755 --- a/RUNTIME/GEOKEYS_refresh.sh +++ b/RUNTIME/GEOKEYS_refresh.sh @@ -58,7 +58,7 @@ for key in ${UKEYS[@]}; do mkdir -p ~/.zen/tmp/flashmem/$key echo "ipfs --timeout 180s get -o ~/.zen/tmp/flashmem/$key /ipns/$key" - ipfs --timeout 180s get -o ~/.zen/tmp/flashmem/$key /ipns/$key + ipfs --timeout 180s get --progress=false -o ~/.zen/tmp/flashmem/$key /ipns/$key [[ $? == 0 ]] \ && medo=$((medo +1)) && floop=$((floop -1)) \ || rm -Rf ~/.zen/tmp/flashmem/$key # GOT IT or NOT ? @@ -83,7 +83,7 @@ for tw in ${TWS[@]}; do floop=$((floop +1)) mkdir -p ~/.zen/tmp/flashmem/tw/$tw - ipfs --timeout 180s get -o ~/.zen/tmp/flashmem/tw/$tw/index.html /ipns/$tw + ipfs --timeout 180s get --progress=false -o ~/.zen/tmp/flashmem/tw/$tw/index.html /ipns/$tw [[ $? == 0 ]] \ && medo=$((medo +1)) && floop=$((floop -1)) \ || rm -Rf ~/.zen/tmp/flashmem/tw/$tw