From: Christian Grothoff Date: Thu, 12 Dec 2019 16:14:28 +0000 (+0100) Subject: need patience for http download X-Git-Tag: v0.12.0~25 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dce1bedcf716fb84ac541a8b7316e692e52f9fc9;p=oweals%2Fgnunet.git need patience for http download --- diff --git a/src/gns/test_plugin_rest_gns.sh b/src/gns/test_plugin_rest_gns.sh index 1412f8753..25c39f135 100755 --- a/src/gns/test_plugin_rest_gns.sh +++ b/src/gns/test_plugin_rest_gns.sh @@ -22,15 +22,20 @@ curl_get () { #$1 is link #$2 is grep XURL=`which gnurl || which curl` - echo "Using $XURL to download $1" + if [ "" = "$XURL" ] + then + echo "HTTP client (curl/gnurl) not found, exiting" + exit 77 + fi + sleep 0.5 cache="$(${XURL} -v "$1" 2>&1 | grep "$2")" #echo "$cache" if [ "" = "$cache" ] then gnunet-identity -D "$TEST_TLD" -c test_gns_lookup.conf > /dev/null 2>&1 gnunet-arm -e -c test_gns_lookup.conf - echo "HTTP client (curl/gnurl) not found, exiting" - exit 77 + echo "Download of $1 using $XURL failed" + exit 1 fi } TEST_TLD="testtld"