fixed: fail build in jenkins scripts if installation target fails

This commit is contained in:
Arne Morten Kvarving 2018-09-19 12:26:15 +02:00
parent 564f064392
commit e3bc8a6ad7

View File

@ -112,6 +112,7 @@ function build_module {
else else
cmake --build . --target install cmake --build . --target install
fi fi
test $? -eq 0 || exit 3
fi fi
} }