diff --git a/src/travis/linux-x86_64-before-install.sh b/src/travis/linux-x86_64-before-install.sh index 6538959d..cc1fd0cd 100755 --- a/src/travis/linux-x86_64-before-install.sh +++ b/src/travis/linux-x86_64-before-install.sh @@ -30,7 +30,7 @@ else # Compile latest OpenSSL OPENSSL_VER=1.1.1b - wget https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz + wget --quiet https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz echo "Extracting OpenSSL..." tar xf openssl-$OPENSSL_VER.tar.gz cd openssl-$OPENSSL_VER @@ -45,7 +45,7 @@ else # Compile latest Python PYTHON_VER=3.7.3 - wget https://www.python.org/ftp/python/$PYTHON_VER/Python-$PYTHON_VER.tar.xz + wget --quiet https://www.python.org/ftp/python/$PYTHON_VER/Python-$PYTHON_VER.tar.xz echo "Extracting Python..." tar xf Python-$PYTHON_VER.tar.xz cd Python-$PYTHON_VER diff --git a/src/travis/osx-x86_64-before-install.sh b/src/travis/osx-x86_64-before-install.sh index 30db9b2a..90376816 100755 --- a/src/travis/osx-x86_64-before-install.sh +++ b/src/travis/osx-x86_64-before-install.sh @@ -5,7 +5,7 @@ brew install xz > /dev/null # Compile latest OpenSSL OPENSSL_VER=1.1.1b -wget https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz +wget --quiet https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz echo "Extracting OpenSSL..." tar xf openssl-$OPENSSL_VER.tar.gz cd openssl-$OPENSSL_VER @@ -20,7 +20,7 @@ cd ~ # Compile latest Python PYTHON_VER=3.7.3 -wget https://www.python.org/ftp/python/$PYTHON_VER/Python-$PYTHON_VER.tar.xz +wget --quiet https://www.python.org/ftp/python/$PYTHON_VER/Python-$PYTHON_VER.tar.xz echo "Extracting Python..." tar xf Python-$PYTHON_VER.tar.xz cd Python-$PYTHON_VER