From d8dde5f9d24586ce5e4ef3beafa71d6255ca68f8 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Thu, 23 Jan 2020 21:00:59 +0000 Subject: [PATCH] Fix the Travis file --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9e74a97b..60927e90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -110,7 +110,7 @@ install: before_script: - | - if [ "BUILD_SYSTEM" == "cmake" ]; then + if [ "$BUILD_SYSTEM" == "cmake" ]; then # Make build directory and generate CMake build files mkdir -p ${CMAKE_BUILD_DIR} && cd ${CMAKE_BUILD_DIR} cmake .. -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DFIX_BUGS=ON -DWARNINGS=ON -DWARNINGS_ALL=ON @@ -119,7 +119,7 @@ before_script: script: - | - if [ "BUILD_SYSTEM" == "cmake" ]; then + if [ "$BUILD_SYSTEM" == "cmake" ]; then # CMake build cd ${CMAKE_BUILD_DIR} cmake --build . --config $BUILD_TYPE --parallel $JOBS