Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/check
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-28 21:20:08 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-28 21:20:08 (GMT)
commit39ba6c7842073a2db94a0022e556c71518f06da2 (patch)
treef28ed67425546d1b9cda4f3aeb62d90ee891a81b /commands/check
parenta76f5c9526141437d882d001b2b45e3a38920442 (diff)
Try to get steps ordering right
Diffstat (limited to 'commands/check')
-rwxr-xr-xcommands/check12
1 files changed, 10 insertions, 2 deletions
diff --git a/commands/check b/commands/check
index ff4ac32..a283940 100755
--- a/commands/check
+++ b/commands/check
@@ -96,9 +96,17 @@ os.environ["SUGAR_PROFILE"] = "uitests"
os.environ["GTK_MODULES"] = "gail:atk-bridge"
if args.module:
- check.check_one(args.module)
+ if not check.check_one(args.module):
+ sys.exit(1)
else:
- print "\n= Checking =\n"
+ 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)
_check_devbot()