Browse Source

Merge branch 'bugfix/fix_build_cmake_example_failing_v3.3' into 'release/v3.3'

Fix false positive errors with CMake example builds (backport v3.3)

See merge request idf/esp-idf!4984
Angus Gratton 6 years ago
parent
commit
081b623a34
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/ci/build_examples_cmake.sh

+ 1 - 1
tools/ci/build_examples_cmake.sh

@@ -143,7 +143,7 @@ build_example () {
         else
             rm -rf build &&
             ./build.sh >>${BUILDLOG} 2>&1
-        fi &&
+        fi ||
         {
             RESULT=$?; FAILED_EXAMPLES+=" ${EXAMPLE_NAME}" ;
         }