Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/check-system
diff options
context:
space:
mode:
Diffstat (limited to 'commands/check-system')
-rwxr-xr-xcommands/check-system10
1 files changed, 6 insertions, 4 deletions
diff --git a/commands/check-system b/commands/check-system
index 6655775..f610bcb 100755
--- a/commands/check-system
+++ b/commands/check-system
@@ -1,6 +1,7 @@
#!/usr/bin/python -u
import argparse
+import sys
import os
import common
@@ -20,7 +21,8 @@ args = parser.parse_args()
interactive = "SUGAR_BUILDBOT" not in os.environ
-system.check(update=args.update,
- remove=args.remove,
- test=args.test,
- interactive=interactive)
+if not system.check(update=args.update,
+ remove=args.remove,
+ test=args.test,
+ interactive=interactive):
+ sys.exit(1)