mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
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:
parent
440d8467a4
commit
bf1c088937
1 changed files with 1 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue