Fix build.sh to check whether Examples build failed

This commit is contained in:
Hebin Huang 2016-04-22 07:42:01 -07:00
Родитель da6901056b
Коммит e2eaa6faa3
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -82,8 +82,14 @@ echo "Assemble SparkCLR examples"
pushd "$FWDIR/../examples"
# clean any possible previous build first
./clean.sh
./build.sh
if [ $? -ne 0 ];
then
echo "Build SparkCLR C# Examples failed, stop building."
popd
exit 1
fi
popd
echo "Assemble SparkCLR script components"