From 7e625a06249a34e69653d1d8cefa2d722246f2cc Mon Sep 17 00:00:00 2001 From: TianlongLiang <111852609+TianlongLiang@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:50:54 +0800 Subject: [PATCH] Fix syntax error in codeql_buildscript.sh (#3864) --- .github/scripts/codeql_buildscript.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/codeql_buildscript.sh b/.github/scripts/codeql_buildscript.sh index f1c412a8..388f3680 100755 --- a/.github/scripts/codeql_buildscript.sh +++ b/.github/scripts/codeql_buildscript.sh @@ -306,7 +306,7 @@ cd ${WAMR_DIR}/product-mini/platforms/linux rm -rf build && mkdir build && cd build cmake .. -DCMAKE_BUILD_TYPE=Debug -DWAMR_BUILD_DYNAMIC_AOT_DEBUG=1 make -j -if [[ $? != 0 ]]; +if [[ $? != 0 ]]; then echo "Failed to build iwasm dynamic aot debug enabled!" exit 1; fi