From 950314339842a92ad6a2eda4c6036ccff8b7dbeb Mon Sep 17 00:00:00 2001 From: nanoric Date: Wed, 20 Mar 2019 21:49:24 -0400 Subject: [PATCH] [Mod] prevent travis vm from terminating: change -qq into -y --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9766f025..b2c8936d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,10 +33,10 @@ matrix: before_install: # C++17 - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - - sudo apt-get update -qq + - sudo apt-get update -y install: # C++17 - - sudo apt-get install -qq gcc-8 g++-8 + - sudo apt-get install -y gcc-8 g++-8 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 90 - sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-8 90 - sudo update-alternatives --install /usr/bin/gcc cc /usr/bin/gcc-8 90 @@ -50,10 +50,10 @@ matrix: before_install: # C++17 - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - - sudo apt-get update -qq + - sudo apt-get update -y install: # C++17 - - sudo apt-get install -qq gcc-7 g++-7 + - sudo apt-get install -y gcc-7 g++-7 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90 - sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-7 90 - sudo update-alternatives --install /usr/bin/gcc cc /usr/bin/gcc-7 90