diff -r f320e22f2cba -r 3f1798d436da scripts/functions --- a/scripts/functions Wed Oct 19 15:27:32 2011 +1300 +++ b/scripts/functions Mon Nov 07 21:40:28 2011 +0100 @@ -457,11 +457,10 @@ # not easy to detect them, so force a global ${CT_CONNECT_TIMEOUT}-second # timeout. # For curl, no good progress indicator is available. So, be silent. - if CT_DoExecLog ALL curl --ftp-pasv \ - --retry 3 \ - --connect-timeout ${CT_CONNECT_TIMEOUT} \ - --location --fail --silent \ - --output "${tmp}" \ + if CT_DoExecLog ALL wget --passive-ftp --tries=3 -nc \ + --progress=dot:binary \ + -T ${CT_CONNECT_TIMEOUT} \ + -O "${tmp}" \ "${url}" then # Success, we got it, good!