From a9d302da46e34204c10073962fef231aa645f7e8 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Sun, 5 Aug 2018 00:08:48 +0100 Subject: [PATCH] Work around issues where reconfig fails due to our python code having changed Needs testing still. For example https://github.com/OpenLightingProject/buildbot/pull/65 broke this --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index dab4a85..1f324a9 100755 --- a/update.sh +++ b/update.sh @@ -13,7 +13,7 @@ if [ -n "$output" ]; then $BUILDBOT checkconfig master.cfg # checkconfig exits 0 if everything is ok. if [ $? -eq 0 ]; then - $BUILDBOT reconfig + $BUILDBOT reconfig || $BUILDBOT restart else echo "Buildbot config is bad"; fi;