From: Mark Andrews Date: Mon, 17 Sep 2018 05:50:56 +0000 (+1000) Subject: look for fetch as well as wget X-Git-Tag: v4_4_2b1~32 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=08f411623d76d4889de442cd13e67d2ea44a5911;p=thirdparty%2Fdhcp.git look for fetch as well as wget --- diff --git a/util/bind.sh b/util/bind.sh index 39f9337c8..180fef4ad 100644 --- a/util/bind.sh +++ b/util/bind.sh @@ -134,21 +134,33 @@ else cd $binddir # Get the bind version file and move it to version.tmp - wget https://$repo_host/$repo_path/raw/$BINDTAG/version + if type wget + then + wget https://$repo_host/$repo_path/raw/$BINDTAG/version || + { echo "Fetch of version file failed" ; exit -1; } + elif type fetch + then + fetch https://$repo_host/$repo_path/raw/$BINDTAG/version || + { echo "Fetch of version file failed" ; exit -1; } + else + echo "Fetch of version file failed" + exit 1 + fi mv version version.tmp - if [ $? -ne 0 ] - then - echo "Fetch of version file failed" - exit -1 - fi # Get the bind release kit shell script - wget https://$repo_host/$repo_path/raw/master/util/kit.sh - if [ $? -ne 0 ] - then - echo "Fetch of kit.sh failed" - exit -1 - fi + if type wget + then + wget https://$repo_host/$repo_path/raw/master/util/kit.sh || + { echo "Fetch of kit.sh file failed" ; exit -1; } + elif type fetch + then + fetch https://$repo_host/$repo_path/raw/master/util/kit.sh || + { echo "Fetch of kit.sh failed" ; exit -1; } + else + echo "Fetch of kit.sh failed" + exit 1 + fi # Create the bind tarball, which has the side effect of # setting up the bind directory we will use for building