From 970a1a1c552288eb7473c1fcc67f34cc0cef0ab6 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Fri, 30 Nov 2012 22:54:00 +0000 Subject: Do not install recommends --- (limited to 'devbot/plugins/debian.py') diff --git a/devbot/plugins/debian.py b/devbot/plugins/debian.py index 856a7f7..0b340e8 100644 --- a/devbot/plugins/debian.py +++ b/devbot/plugins/debian.py @@ -15,7 +15,7 @@ class PackageManager(interfaces.PackageManager): self._cache = apt.cache.Cache() def install_packages(self, packages): - args = ["apt-get"] + args = ["apt-get", "--no-install-recommends"] if not self._interactive: args.append("-y") -- cgit v0.9.1