diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-03-13 23:56:17 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2018-03-13 23:56:17 +0100 |
commit | b1334142ab5520f652f3dfe9f8bdebba880328d7 (patch) | |
tree | 7f7a47c94f5afb11417a044893689586e33a9fdf /.travis | |
parent | 6dc12e00c852b143429b3db0c01cb9abcf102b8f (diff) | |
download | blogc-b1334142ab5520f652f3dfe9f8bdebba880328d7.tar.gz blogc-b1334142ab5520f652f3dfe9f8bdebba880328d7.tar.bz2 blogc-b1334142ab5520f652f3dfe9f8bdebba880328d7.zip |
travis: do not exit on build error
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/test-run.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.travis/test-run.sh b/.travis/test-run.sh index 8858dd8..b9bd083 100755 --- a/.travis/test-run.sh +++ b/.travis/test-run.sh @@ -50,10 +50,7 @@ RV=0 if [[ ${BUILD} -eq 1 ]]; then pushd "${BUILD_DIR}" > /dev/null - set +e - build - RV=$? - set -e + build || RV=1 popd > /dev/null fi |