From e04b41cfd03579883fe237f73b0dea87b2d11ddf Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Vanberg <42804805+pvanberg@users.noreply.github.com> Date: Thu, 9 May 2019 23:20:15 +0200 Subject: [PATCH] travis compatibility fix --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index a5ce9799..48d45ba9 100755 --- a/build.sh +++ b/build.sh @@ -15,7 +15,7 @@ if [ $? -eq 0 ]; then echo "mCmake found."; else echo "Cmake not found, installing..."; - apt-get install cmake; + apt-get -y install cmake; echo "Cmake installed."; fi @@ -24,7 +24,7 @@ if [ $? -eq 0 ]; then echo "G++ found."; else echo "G++ not found, installing..."; - apt-get install g++; + apt-get -y install g++; export CC=gcc; export CXX=g++; echo "G++ installed."; @@ -35,7 +35,7 @@ if [ $? -eq 0 ]; then echo "Gfortran found."; else echo "Gfortran not found, installing..."; - apt-get install gfortran; + apt-get -y install gfortran; echo "Gfortran installed."; fi @@ -44,7 +44,7 @@ if [ $? -eq 0 ]; then echo "Lapack/Blas found."; else echo "Lapack/Blas not found, installing..."; - apt-get install libblas-dev liblapack-dev; + apt-get -y install libblas-dev liblapack-dev; echo "Lapack/Blas installed."; fi