From: Loïc Blot Date: Fri, 9 Jun 2017 07:40:16 +0000 (+0200) Subject: buildbot: exit 0 at the end of the script X-Git-Tag: 5.0.0~1121 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=312ca0382b864e6cdc20e308c33558869527a8ff;p=oweals%2Fminetest.git buildbot: exit 0 at the end of the script This permits script to return correct state when skipping packaging --- diff --git a/util/buildbot/buildwin32.sh b/util/buildbot/buildwin32.sh index 5ab446593..1478bc926 100755 --- a/util/buildbot/buildwin32.sh +++ b/util/buildbot/buildwin32.sh @@ -153,4 +153,5 @@ make -j2 [ "x$NO_PACKAGE" = "x" ] && make package +exit 0 # EOF diff --git a/util/buildbot/buildwin64.sh b/util/buildbot/buildwin64.sh index e2fc45b0a..81fbf43fa 100755 --- a/util/buildbot/buildwin64.sh +++ b/util/buildbot/buildwin64.sh @@ -154,4 +154,5 @@ make -j2 [ "x$NO_PACKAGE" = "x" ] && make package +exit 0 # EOF