summaryrefslogtreecommitdiff
path: root/src/Propellor/Bootstrap.hs
diff options
context:
space:
mode:
authorJoey Hess2016-03-30 15:40:57 -0400
committerJoey Hess2016-03-30 15:40:57 -0400
commitb3b49ad53db956e5de43fd6b7ef785f026740f2e (patch)
treeb72b912a3c6b182b0a1f37614a370d9134058382 /src/Propellor/Bootstrap.hs
parentc2449d40e4e1dbf2e89e19adffacd5974d792fd7 (diff)
apt install propellor dependencies more quietly
Avoids spam when most deps are installed
Diffstat (limited to 'src/Propellor/Bootstrap.hs')
-rw-r--r--src/Propellor/Bootstrap.hs4
1 files 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 ()