don't continue building when an error occured
This commit is contained in:
parent
4cc1c9744d
commit
ec4878e58a
1 changed files with 2 additions and 2 deletions
|
@ -52,9 +52,9 @@ echo 'autogen.sh and configure...'
|
|||
make clean > /dev/null
|
||||
|
||||
echo 'make...'
|
||||
make > $BUILD/$DIR/make.log
|
||||
make > $BUILD/$DIR/make.log || exit 1
|
||||
echo 'make install...'
|
||||
make install > $BUILD/$DIR/install.log
|
||||
make install > $BUILD/$DIR/install.log || exit 1
|
||||
|
||||
cd $SERVERBASE
|
||||
if [ -p $SOCKET ]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue