fix(ci): Exit if make fails

This commit is contained in:
Michael Carlberg 2017-01-24 12:12:12 +01:00
parent 31cde9014a
commit f974609fc5
1 changed files with 2 additions and 1 deletions

View File

@ -1,2 +1,3 @@
#!/bin/bash
cd "${TRAVIS_BUILD_DIR}/build" && make -j"${JOBS}"
cd "${TRAVIS_BUILD_DIR}/build" || false
make -j"${JOBS}" || exit $?