Skip to content
Snippets Groups Projects
Commit c0bc9727 authored by Rohit Gupta's avatar Rohit Gupta
Browse files

Merge branch 'bugfix-122-build_helper_breaks_on_gnutls_downloading' into 'develop'

fix gnutls download (closes #122)

Please merge this fix,

Regards,

Frédéric

See merge request !38
parents 7d7b9ffc dfe087a5
No related branches found
No related tags found
No related merge requests found
......@@ -205,10 +205,8 @@ install_gnutls_from_source(){
cd /tmp
echo "Downloading gnutls archive"
$SUDO rm -rf /tmp/gnutls-3.1.23.tar.xz* /tmp/gnutls-3.1.23
wget http://mirrors.dotsrc.org/gcrypt/gnutls/v3.1/gnutls-3.1.23.tar.xz
if [ $? -ne 0 ]; then
wget http://mirrors.dotsrc.org/gcrypt/gnutls/v3.1/gnutls-3.1.23.tar.xz || \
wget ftp://ftp.gnutls.org/gcrypt/gnutls/v3.1/gnutls-3.1.23.tar.xz
fi
if [ ! -f gnutls-3.1.23.tar.xz ]; then
echo_error "Could not download gnutls source files"
cd -
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment