Skip to content
Snippets Groups Projects
Commit e23ec003 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Adding error when make install fail

parent 334a987d
No related branches found
No related tags found
No related merge requests found
Pipeline #2898 passed
...@@ -111,6 +111,9 @@ fi ...@@ -111,6 +111,9 @@ fi
# Check of we have to do a make install # Check of we have to do a make install
if [ x"$comp_type" == x"full" ]; then if [ x"$comp_type" == x"full" ]; then
make install make install
if [ x"$?" != x"0" ]; then
exit 1
fi
else else
echo "Make install partial" echo "Make install partial"
if [ x"$comp_type" == x"intel" ]; then if [ x"$comp_type" == x"intel" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment