tazwok rev 286
Needed another --no-check-certificate for https option to work in download function.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Mon Feb 14 17:56:17 2011 +0000 (2011-02-14) |
parents | 4f5a311f69dc |
children | 6d02376d4481 |
files | tazwok |
line diff
1.1 --- a/tazwok Mon Feb 14 18:36:37 2011 +0100 1.2 +++ b/tazwok Mon Feb 14 17:56:17 2011 +0000 1.3 @@ -720,7 +720,7 @@ 1.4 if [ "${WGET_URL%$TARBALL}" = "$WGET_URL" ] && [ "$file" = "$WGET_URL" ]; then 1.5 wget -q --no-check-certificate -O $TARBALL $file && break 1.6 else 1.7 - wget -q $file && break 1.8 + wget -q --no-check-certificate $file && break 1.9 fi 1.10 else 1.11 tazwok_warning "Needs wget to download the source tarball from $file, please add it as build-depend."