소스 검색

CI: Fix typo in linux build script (Travis)

Ralph Lange 5 년 전
부모
커밋
4fe0f626de
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tools/travis/travis_linux_script.sh

+ 2 - 2
tools/travis/travis_linux_script.sh

@@ -261,7 +261,7 @@ else
     rm build -rf
     echo -en 'travis_fold:end:script.build.linux_64\\r'
 
-    echo -e "\r\n== Building the C++ example =="  && echo -en 'travis_fold:start:script.build.example\\r'
+    echo -e "\r\n== Compile with amalgamation =="  && echo -en 'travis_fold:start:script.build.amalgamate\\r'
     mkdir -p build && cd build
     cmake \
         -DBUILD_SHARED_LIBS=ON \
@@ -277,7 +277,7 @@ else
     g++ ../examples/server.cpp -I./ open62541.o -lrt -o cpp-server
     if [ $? -ne 0 ] ; then exit 1 ; fi
     cd .. && rm build -rf
-    echo -en 'travis_fold:end:script.build.example\\r'
+    echo -en 'travis_fold:end:script.build.amalgamate\\r'
 
     echo "Compile as shared lib version" && echo -en 'travis_fold:start:script.build.shared_libs\\r'
     mkdir -p build && cd build