From 83c869ef44037bc2e0abec196de05998d5fea5c9 Mon Sep 17 00:00:00 2001 From: Matthias Rampke Date: Tue, 16 Aug 2011 01:16:21 +0200 Subject: [PATCH] resume downloads with wget and curl --- summon-arm-toolchain | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.25.1