Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/check
diff options
context:
space:
mode:
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()