diff options
author | Junichi Uekawa <dancer@netfort.gr.jp> | 2009-08-15 14:08:54 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@netfort.gr.jp> | 2009-08-15 14:08:54 +0900 |
commit | aff01735117398ff354134327ded0f8773ba5080 (patch) | |
tree | c1d3d0ab54edd64b6d4e48b14610a503047babca /pbuilder-buildpackage-funcs | |
parent | 5047167c4e74464a454a79e94944843a0a586ef9 (diff) | |
download | pbuilder-aff01735117398ff354134327ded0f8773ba5080.tar pbuilder-aff01735117398ff354134327ded0f8773ba5080.tar.gz |
pass apt-get '-q' option to remove the progress.
It's probably not too useful when used non-interactively, and clutters output.
Diffstat (limited to 'pbuilder-buildpackage-funcs')
-rw-r--r-- | pbuilder-buildpackage-funcs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-buildpackage-funcs b/pbuilder-buildpackage-funcs index 370c799..023dbca 100644 --- a/pbuilder-buildpackage-funcs +++ b/pbuilder-buildpackage-funcs @@ -50,7 +50,7 @@ function checkbuilddep () { fi # install extra packages to the chroot if [ -n "$EXTRAPACKAGES" ]; then - $CHROOTEXEC usr/bin/apt-get -y --force-yes install ${EXTRAPACKAGES} + $CHROOTEXEC usr/bin/apt-get -q -y --force-yes install ${EXTRAPACKAGES} fi } |