Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--devbot/system.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/devbot/system.py b/devbot/system.py
index d348f2a..0bbfe8d 100644
--- a/devbot/system.py
+++ b/devbot/system.py
@@ -103,7 +103,8 @@ def run_checks(package_manager, checks, packages):
_print_checks(_packages_not_found)
return False
- package_manager.install_packages(to_install)
+ if to_install:
+ package_manager.install_packages(to_install)
elif failed_checks:
print "Failed checks\n"
_print_checks(failed_checks)