scripts/get: dont check for certificate

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-12-05 10:35:18 +01:00
parent c2096e7760
commit 2c5650dba4

View File

@ -36,7 +36,7 @@ if [ -n "$PKG_URL" ]; then
[ "$VERBOSE" != yes ] && WGET_OPT=-q
NBWGET=1
until [ -f $STAMP ] || wget --passive-ftp -c $WGET_OPT -P $SOURCES/$1 $i; do
until [ -f $STAMP ] || wget --passive-ftp --no-check-certificate -c $WGET_OPT -P $SOURCES/$1 $i; do
NBWGET=$(($NBWGET+1))
if [ $NBWGET -gt 10 ]; then
echo -e "\nCant't get $1 sources : $i\n Try later !!"