summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2016-10-26 11:05:35 -0600
committerTom Rini <trini@konsulko.com>2016-10-28 22:10:44 -0400
commitbf1c0889379f1e71a25d9b94fa5ce7cec8c36d19 (patch)
tree4d6095c951116d14dacc070d226f9c9e470c7017
parent440d8467a4109e349e9fd3d285ea4292fa77a2f8 (diff)
travis-ci: don't invoke exit on success
Invoking exit prevents any subsequent build commands from running, and future patches will add extra commands. Signed-off-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Heiko Schocher <hs@denx.de>
-rw-r--r--.travis.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 6e72e0bb23..a537f0e34d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -74,9 +74,7 @@ script:
set +e;
tools/buildman/buildman -P ${BUILDMAN};
ret=$?;
- if [[ $ret -eq 0 || $ret -eq 129 ]]; then
- exit 0;
- else
+ if [[ $ret -ne 0 && $ret -ne 129 ]]; then
exit $ret;
fi;
fi