fix missing space, add option to exit on error for e.g. console core builds

This commit is contained in:
Brad Parker 2017-10-20 15:59:50 -04:00
parent e57d3a9a0d
commit f07a02f9df
1 changed files with 33 additions and 28 deletions

View File

@ -1,3 +1,4 @@
#!/bin/bash
# vim: set ts=3 sw=3 noet ft=sh : bash # vim: set ts=3 sw=3 noet ft=sh : bash
# ----- setup ----- # ----- setup -----
@ -273,6 +274,10 @@ buildbot_handle_message() {
echo buildbot job: $MESSAGE echo buildbot job: $MESSAGE
buildbot_log "$MESSAGE" buildbot_log "$MESSAGE"
if [ "$FAIL_ON_ERROR" = "1" ]; then
return 1
fi
} }
build_libretro_generic_makefile() { build_libretro_generic_makefile() {