shithub: cstory

Download patch

ref: d8dde5f9d24586ce5e4ef3beafa71d6255ca68f8
parent: fc874f063e22b3b2c2ddf6f12ec1fcc18e544c7c
author: Clownacy <[email protected]>
date: Thu Jan 23 16:00:59 EST 2020

Fix the Travis file

--- a/.travis.yml
+++ b/.travis.yml
@@ -110,7 +110,7 @@
 
 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 @@
 
 script:
     - |
-      if [ "BUILD_SYSTEM" == "cmake" ]; then
+      if [ "$BUILD_SYSTEM" == "cmake" ]; then
         # CMake build
         cd ${CMAKE_BUILD_DIR}
         cmake --build . --config $BUILD_TYPE --parallel $JOBS