From: Matthias Rampke Date: Mon, 15 Aug 2011 23:16:21 +0000 (+0200) Subject: resume downloads with wget and curl X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=summon-arm-toolchain.git;a=commitdiff_plain;h=83c869ef44037bc2e0abec196de05998d5fea5c9 resume downloads with wget and curl --- diff --git a/summon-arm-toolchain b/summon-arm-toolchain index 3cd8aee..a20608d 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -119,9 +119,9 @@ STAMPS=${SUMMON_DIR}/stamps if which fetch > /dev/null; then FETCHCMD="fetch -p" elif which wget > /dev/null; then - FETCHCMD=wget + FETCHCMD="wget -c" elif which curl > /dev/null; then - FETCHCMD="curl -O -L" + FETCHCMD="curl -C - -O -L" else FETCHCMD=ftp # the only HTTP client on some BSD fi