mirror of
https://github.com/libretro/libretro-super
synced 2025-02-11 00:39:59 +00:00
only exit on error if there actually was one
This commit is contained in:
parent
97ddd9526c
commit
5429180b3f
@ -278,7 +278,7 @@ buildbot_handle_message() {
|
|||||||
buildbot_log "$MESSAGE"
|
buildbot_log "$MESSAGE"
|
||||||
|
|
||||||
# used by Travis-CI to exit immediately if a core build fails, instead of trying to build RA anyways (for static/console builds)
|
# used by Travis-CI to exit immediately if a core build fails, instead of trying to build RA anyways (for static/console builds)
|
||||||
if [ "$EXIT_ON_ERROR" = "1" ]; then
|
if [ $RET -ne 0 ] && [ "$EXIT_ON_ERROR" = "1" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user