From 1e99ca4c99bbeafd6526e59fc76a77e17d7ea4ff Mon Sep 17 00:00:00 2001 From: Michal Kravcenko <michal.kravcenko@vsb.cz> Date: Tue, 8 Jan 2019 14:59:19 +0100 Subject: [PATCH] MOD: modified bracketing in linux build script --- build_scripts/linux/linux_gcc_build_x64_debug_system.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_scripts/linux/linux_gcc_build_x64_debug_system.sh b/build_scripts/linux/linux_gcc_build_x64_debug_system.sh index b0bba127..fc63c556 100755 --- a/build_scripts/linux/linux_gcc_build_x64_debug_system.sh +++ b/build_scripts/linux/linux_gcc_build_x64_debug_system.sh @@ -104,7 +104,7 @@ then if [ ${BUILD_ERROR_OCCURED} = "0" ] then echo "Building the '${CYAN}lib4neuro${NC}' project for ${WHITE}Debug${NC} (building)" - ( cmake --build . --config Debug -- -j${N_CORES} ) && ( echo "${GREEN}Build complete${NC}." ) || ( echo "${RED}Build finished with errors${NC}!"; export BUILD_ERROR_OCCURED=1; ) + cmake --build . --config Debug -- -j${N_CORES} && echo "${GREEN}Build complete${NC}." || `echo "${RED}Build finished with errors${NC}!"; export BUILD_ERROR_OCCURED=1;` fi cd build_scripts/linux -- GitLab