Skip to content
Snippets Groups Projects
Commit bf1c0889 authored by Stephen Warren's avatar Stephen Warren Committed by Tom Rini
Browse files

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: default avatarStephen Warren <swarren@nvidia.com>
Reviewed-by: default avatarHeiko Schocher <hs@denx.de>
parent 440d8467
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment