From 6ef62014d1036720776f1fcb8915a9d2690d7cac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= Date: Mon, 26 Jun 2017 11:25:37 +0200 Subject: [PATCH] Imediatly stop on failure --- .travis-ci-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis-ci-build b/.travis-ci-build index 4fec82f..dd4a2ec 100755 --- a/.travis-ci-build +++ b/.travis-ci-build @@ -2,7 +2,7 @@ cd $1 if [ "$BLD" = autotools ]; then - set -x + set -ex autoreconf -vis mkdir build-autotools cd build-autotools @@ -10,7 +10,7 @@ if [ "$BLD" = autotools ]; then make make install elif [ "$BLD" = cmake ]; then - set -x + set -ex mkdir build-cmake cd build-cmake cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local ..