Skip to content

Commit

Permalink
Because of a ssl error within the launchpad servers, wget wont'n down…
Browse files Browse the repository at this point in the history
…load the files. Added the --no-check-certificate parameter to wget to walkaround this bug.
  • Loading branch information
jack77er committed Mar 8, 2012
1 parent 5f14832 commit 50b84b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion summon-arm-toolchain
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ esac
function fetch {
if [ ! -e ${STAMPS}/$1.fetch ]; then
log "Downloading $1 sources..."
wget -c --no-passive-ftp $2 && touch ${STAMPS}/$1.fetch
wget -c --no-passive-ftp --no-check-certificate $2 && touch ${STAMPS}/$1.fetch
fi
}

Expand Down

0 comments on commit 50b84b4

Please sign in to comment.