Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rwxr-xr-xcommands/check-system7
1 files changed, 6 insertions, 1 deletions
diff --git a/commands/check-system b/commands/check-system
index de7eb71..76914fb 100755
--- a/commands/check-system
+++ b/commands/check-system
@@ -32,4 +32,9 @@ def apply_ubuntu_tweaks():
if distro.get_distro_name() == "ubuntu":
apply_ubuntu_tweaks()
-system.check(update=args.update, remove=args.remove, test=args.test)
+interactive = "SUGAR_BUILDBOT" not in os.environ
+
+system.check(update=args.update,
+ remove=args.remove,
+ test=args.test,
+ interactive=interactive)