From 16850b0a9c457e4ce33241fa25ecf7f39d8f6e59 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 8 Jul 2017 19:25:59 -0400 Subject: [PATCH] buildbot-os2.sh: actually report an error code. --- extras/buildbot-os2.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extras/buildbot-os2.sh b/extras/buildbot-os2.sh index 7a96824..7bab07a 100755 --- a/extras/buildbot-os2.sh +++ b/extras/buildbot-os2.sh @@ -64,7 +64,9 @@ fi if [ "$OKAY" == "1" ]; then echo 1>&2 "Build succeeded." + exit 0 else echo 1>&2 "Build failed." + exit 1 fi