From b3970c451c22f8f0cc62074ca3f09836b4d0803c Mon Sep 17 00:00:00 2001 From: Alberto Invernizzi Date: Sun, 27 Jun 2021 19:41:46 +0200 Subject: [PATCH] fix bash var set + use correct cmake bins (travis uses macos 10.12) --- ci_build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci_build.sh b/ci_build.sh index b5bd9d1..9a4e8f6 100755 --- a/ci_build.sh +++ b/ci_build.sh @@ -17,9 +17,9 @@ cmake_install() { local CMAKE_SUFFIX="none" if [ $TRAVIS_OS_NAME = "linux" ]; then - set CMAKE_SUFFIX="linux-x86_64" + CMAKE_SUFFIX="linux-x86_64" elif [ $TRAVIS_OS_NAME = "osx" ]; then - set CMAKE_SUFFIX="macos-universal" + CMAKE_SUFFIX="macos10.10-universal" else echo "TRAVIS_OS_NAME $TRAVIS_OS_NAME not expected" exit 1