From 1312c698f957298bdbddff9c32063e78e79fc93c Mon Sep 17 00:00:00 2001 From: David Runge Date: Thu, 11 Oct 2018 08:43:56 +0200 Subject: [PATCH] .ci/install-deps.sh: Install the right gcc formula using brew. --- .ci/install-deps.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/install-deps.sh b/.ci/install-deps.sh index 14ace1c2..ddc25262 100755 --- a/.ci/install-deps.sh +++ b/.ci/install-deps.sh @@ -13,15 +13,15 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then doxygen # force installation of gcc-6 if required if [ "${CC}" == "gcc-6" ]; then - brew install gcc6 + brew install gcc@6 fi # force installation of gcc-7 if required if [ "${CC}" == "gcc-7" ]; then - brew install gcc7 + brew install gcc@7 fi # force installation of gcc-8 if required if [ "${CC}" == "gcc-8" ]; then - brew install gcc8 + brew install gcc@8 fi fi