From 2c5650dba43cd05641ec529e9cc048bdec7479a8 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 5 Dec 2010 10:35:18 +0100 Subject: [PATCH] scripts/get: dont check for certificate Signed-off-by: Stephan Raue --- scripts/get | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get b/scripts/get index 7b86b16670..475af7211e 100755 --- a/scripts/get +++ b/scripts/get @@ -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 !!"