Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/run
diff options
context:
space:
mode:
Diffstat (limited to 'commands/run')
-rwxr-xr-xcommands/run7
1 files changed, 7 insertions, 0 deletions
diff --git a/commands/run b/commands/run
index e66eaf4..e3f311a 100755
--- a/commands/run
+++ b/commands/run
@@ -6,9 +6,16 @@ import common
from devbot import run
from devbot import build
+from devbot import system
common.setup(log_name="run")
+if not system.check(lazy=True):
+ sys.exit(1)
+
+if not build.pull(lazy=True):
+ sys.exit(1)
+
if not build.build():
sys.exit(1)