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>
This commit is contained in:
Stephen Warren 2016-10-26 11:05:35 -06:00 committed by Tom Rini
parent 440d8467a4
commit bf1c088937

View File

@ -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