Skip to content

Commit b3970c4

Browse files
committed
fix bash var set + use correct cmake bins (travis uses macos 10.12)
1 parent ec64092 commit b3970c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ cmake_install() {
1717
local CMAKE_SUFFIX="none"
1818

1919
if [ $TRAVIS_OS_NAME = "linux" ]; then
20-
set CMAKE_SUFFIX="linux-x86_64"
20+
CMAKE_SUFFIX="linux-x86_64"
2121
elif [ $TRAVIS_OS_NAME = "osx" ]; then
22-
set CMAKE_SUFFIX="macos-universal"
22+
CMAKE_SUFFIX="macos10.10-universal"
2323
else
2424
echo "TRAVIS_OS_NAME $TRAVIS_OS_NAME not expected"
2525
exit 1

0 commit comments

Comments
 (0)