mirror of
https://github.com/libretro/libretro-super.git
synced 2024-11-27 18:10:40 +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"
|
||||
|
||||
# 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
|
||||
fi
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user