Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/build.py')
-rw-r--r--devbot/build.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/devbot/build.py b/devbot/build.py
index 6380c6e..95652b5 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -12,6 +12,7 @@ from devbot import state
from devbot import utils
from devbot import release
from devbot import git
+from devbot import system
_builders = {}
_distributors = {}
@@ -57,7 +58,11 @@ def build(full=False):
state.full_build_touch()
- pull(lazy=True)
+ if not system.check(lazy=True):
+ return False
+
+ if not pull(lazy=True):
+ return False
to_build = []
for module in config.load_modules():