From 39ba6c7842073a2db94a0022e556c71518f06da2 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Fri, 28 Dec 2012 21:20:08 +0000 Subject: Try to get steps ordering right --- (limited to 'commands/run') 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) -- cgit v0.9.1