From fa6b5c5d09379ba52878b54d103efd1c05f10bb3 Mon Sep 17 00:00:00 2001 From: baldurk Date: Tue, 23 Oct 2018 12:57:11 +0100 Subject: [PATCH] Magically fix travis OSX compile * Probably there was a trailing non-zero exit code that's not actually fatal, from homebrew commands. The echo hides that. --- util/travis/osx_compile.sh | 1 - util/travis/osx_setup.sh | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/util/travis/osx_compile.sh b/util/travis/osx_compile.sh index e443460cf..318532f9b 100755 --- a/util/travis/osx_compile.sh +++ b/util/travis/osx_compile.sh @@ -3,5 +3,4 @@ mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug .. -echo "Building with $(nproc) jobs" make -j2 diff --git a/util/travis/osx_setup.sh b/util/travis/osx_setup.sh index a665cecc2..b9d9e7d85 100755 --- a/util/travis/osx_setup.sh +++ b/util/travis/osx_setup.sh @@ -4,3 +4,5 @@ brew update brew install qt5 brew link qt5 --force brew upgrade python + +echo "Setup complete"