From b3b49ad53db956e5de43fd6b7ef785f026740f2e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 30 Mar 2016 15:40:57 -0400 Subject: apt install propellor dependencies more quietly Avoids spam when most deps are installed --- src/Propellor/Bootstrap.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Propellor/Bootstrap.hs b/src/Propellor/Bootstrap.hs index b60dd8c4..969e1a42 100644 --- a/src/Propellor/Bootstrap.hs +++ b/src/Propellor/Bootstrap.hs @@ -71,7 +71,7 @@ depsCommand msys = "( " ++ intercalate " ; " (concat [osinstall, cabalinstall]) , "cabal install --only-dependencies" ] - aptinstall p = "DEBIAN_FRONTEND=noninteractive apt-get --no-upgrade --no-install-recommends -y install " ++ p + aptinstall p = "DEBIAN_FRONTEND=noninteractive apt-get -qq --no-upgrade --no-install-recommends -y install " ++ p pkginstall p = "ASSUME_ALWAYS_YES=yes pkg install " ++ p -- This is the same deps listed in debian/control. @@ -128,7 +128,7 @@ installGitCommand msys = case msys of use cmds = "if ! git --version >/dev/null; then " ++ intercalate " && " cmds ++ "; fi" apt = [ "apt-get update" - , "DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends --no-upgrade -y install git" + , "DEBIAN_FRONTEND=noninteractive apt-get -qq --no-install-recommends --no-upgrade -y install git" ] buildPropellor :: Maybe Host -> IO () -- cgit v1.2.3